├── .gitattributes ├── .gitignore ├── .idea └── .name ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── thecode │ │ └── androidlocation │ │ └── ExampleInstrumentedTest.java │ ├── debug │ └── res │ │ └── values │ │ └── google_maps_api.xml │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── com │ │ │ └── thecode │ │ │ └── androidlocation │ │ │ ├── activities │ │ │ ├── MapsActivity.java │ │ │ └── SplashScreenActivity.java │ │ │ └── utils │ │ │ └── GpsUtils.java │ └── res │ │ ├── anim │ │ └── animate_fade.xml │ │ ├── drawable │ │ ├── bottom_sheet_background.xml │ │ ├── btn_blue_normal.xml │ │ ├── btn_blue_pressed.xml │ │ ├── btn_blue_selector.xml │ │ ├── close_circle.xml │ │ ├── default_background_rounded_rect.xml │ │ ├── ic_dialog_indicator.xml │ │ └── ic_location_on_blue_24dp.xml │ │ ├── layout │ │ ├── activity_maps.xml │ │ ├── activity_splash_screen.xml │ │ └── bottom_sheet_location.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── release │ └── res │ │ └── values │ │ └── google_maps_api.xml │ └── test │ └── java │ └── com │ └── thecode │ └── androidlocation │ └── ExampleUnitTest.java ├── demo └── sample-demo.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Android Location -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/thecode/androidlocation/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/androidTest/java/com/thecode/androidlocation/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/debug/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/debug/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/com/thecode/androidlocation/activities/MapsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/java/com/thecode/androidlocation/activities/MapsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thecode/androidlocation/activities/SplashScreenActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/java/com/thecode/androidlocation/activities/SplashScreenActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/thecode/androidlocation/utils/GpsUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/java/com/thecode/androidlocation/utils/GpsUtils.java -------------------------------------------------------------------------------- /app/src/main/res/anim/animate_fade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/anim/animate_fade.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bottom_sheet_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/bottom_sheet_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_blue_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/btn_blue_normal.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_blue_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/btn_blue_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_blue_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/btn_blue_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/close_circle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/close_circle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/default_background_rounded_rect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/default_background_rounded_rect.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_dialog_indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/ic_dialog_indicator.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_location_on_blue_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/drawable/ic_location_on_blue_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/layout/activity_maps.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/layout/activity_splash_screen.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/bottom_sheet_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/layout/bottom_sheet_location.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/release/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/release/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /app/src/test/java/com/thecode/androidlocation/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/app/src/test/java/com/thecode/androidlocation/ExampleUnitTest.java -------------------------------------------------------------------------------- /demo/sample-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/demo/sample-demo.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabriel-TheCode/AndroidLocation/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name='Android Location' 3 | --------------------------------------------------------------------------------