├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── stale.yml └── workflows │ └── greetings.yml ├── .gitignore ├── LICENSE ├── LocationFetch ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── anirudh │ │ └── locationfetch │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── anirudh │ │ └── locationfetch │ │ ├── EasyLocationFetch.java │ │ └── GeoLocationModel.java │ └── test │ └── java │ └── com │ └── anirudh │ └── locationfetch │ └── ExampleUnitTest.java ├── Readme.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── anirudh │ │ └── EasyLocationFetch │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── anirudh │ │ │ └── EasyLocationFetch │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.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 │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── anirudh │ └── EasyLocationFetch │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── renovate.json └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LICENSE -------------------------------------------------------------------------------- /LocationFetch/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /LocationFetch/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/build.gradle -------------------------------------------------------------------------------- /LocationFetch/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LocationFetch/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/proguard-rules.pro -------------------------------------------------------------------------------- /LocationFetch/src/androidTest/java/com/anirudh/locationfetch/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/src/androidTest/java/com/anirudh/locationfetch/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /LocationFetch/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /LocationFetch/src/main/java/com/anirudh/locationfetch/EasyLocationFetch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/src/main/java/com/anirudh/locationfetch/EasyLocationFetch.java -------------------------------------------------------------------------------- /LocationFetch/src/main/java/com/anirudh/locationfetch/GeoLocationModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/src/main/java/com/anirudh/locationfetch/GeoLocationModel.java -------------------------------------------------------------------------------- /LocationFetch/src/test/java/com/anirudh/locationfetch/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/LocationFetch/src/test/java/com/anirudh/locationfetch/ExampleUnitTest.java -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/Readme.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/anirudh/EasyLocationFetch/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/androidTest/java/com/anirudh/EasyLocationFetch/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/anirudh/EasyLocationFetch/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/java/com/anirudh/EasyLocationFetch/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/anirudh/EasyLocationFetch/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/app/src/test/java/com/anirudh/EasyLocationFetch/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/gradlew.bat -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anirudhmpai/EasyLocationFetch/HEAD/settings.gradle --------------------------------------------------------------------------------