Gps检测器-Android库
当GPS禁用时显示一个对话框,并在接受时启用它,而无需打开android设置
安装
将jCenter的依赖项添加到应用程序(而非项目)的build.gradle文件中:
repositories {
jcenter ()
}
dependencies {
compile ' net.alexandroid.utils:gps:1.6 '
}
如果您遇到与播放服务库的版本冲突,请使用排除,如下所示:
compile ( ' net.alexandroid.utils:gps:1.6 ' ) {
exclude group: ' com.google.android.gms ' , module: ' play-services-location '
exclude group: ' com.google.android.gms
1