【发布时间】:2017-01-27 10:52:20
【问题描述】:
我的 GPS 应用开始安装在没有 GPS 硬件(例如 Pixel C)的设备上。我特别要求我的应用具有 GPS 级别的精度。
我的build.gradle 文件看起来像
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "my.application.id"
minSdkVersion 15
targetSdkVersion 22
}
}
如何确保我的应用仅安装在 GPS 硬件上?我的应用发生了什么变化?
【问题讨论】:
标签: android android-location android-gps