├── MTDC.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── cn │ │ └── motalks │ │ └── mtdc │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── cn │ │ │ └── motalks │ │ │ └── mtdc │ │ │ ├── ui │ │ │ └── LocationTestActivity.java │ │ │ └── utils │ │ │ ├── EasyPermissionsEx.java │ │ │ ├── LocationHelper.java │ │ │ └── LocationUtils.java │ └── res │ │ ├── layout │ │ └── location_text_activity.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── cn │ └── motalks │ └── mtdc │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── projectFilesBackup └── .idea │ └── workspace.xml └── settings.gradle /MTDC.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/MTDC.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/cn/motalks/mtdc/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/androidTest/java/cn/motalks/mtdc/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/cn/motalks/mtdc/ui/LocationTestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/java/cn/motalks/mtdc/ui/LocationTestActivity.java -------------------------------------------------------------------------------- /app/src/main/java/cn/motalks/mtdc/utils/EasyPermissionsEx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/java/cn/motalks/mtdc/utils/EasyPermissionsEx.java -------------------------------------------------------------------------------- /app/src/main/java/cn/motalks/mtdc/utils/LocationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/java/cn/motalks/mtdc/utils/LocationHelper.java -------------------------------------------------------------------------------- /app/src/main/java/cn/motalks/mtdc/utils/LocationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/java/cn/motalks/mtdc/utils/LocationUtils.java -------------------------------------------------------------------------------- /app/src/main/res/layout/location_text_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/layout/location_text_activity.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/cn/motalks/mtdc/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/app/src/test/java/cn/motalks/mtdc/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/local.properties -------------------------------------------------------------------------------- /projectFilesBackup/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apkcoder/AndroidLocationUtils/HEAD/projectFilesBackup/.idea/workspace.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------