├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── google-services.json ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── googleplayservicelocationsupport │ │ ├── AppApplication.java │ │ ├── FragmentLocationActivity.java │ │ ├── LocationFragment.java │ │ ├── LocationService.java │ │ └── MainActivity.java │ └── res │ ├── layout │ ├── activity_fragment_location.xml │ └── activity_main.xml │ ├── menu │ └── menu.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 ├── google-support-location ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── akashandroid90 │ └── googlesupport │ └── location │ ├── AppLocation.java │ ├── AppLocationActivity.java │ ├── AppLocationCompatActivity.java │ ├── AppLocationFragment.java │ ├── AppLocationIntentService.java │ ├── AppLocationService.java │ ├── AppLocationSupportFragment.java │ ├── GoogleContextSupportLocation.java │ └── GoogleSupportLocation.java ├── gradle.properties ├── gradlew ├── gradlew.bat ├── images ├── four.png ├── one.png ├── three.png └── two.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | GooglePlayServiceLocationSupport -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/googleplayservicelocationsupport/AppApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/java/com/googleplayservicelocationsupport/AppApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/googleplayservicelocationsupport/FragmentLocationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/java/com/googleplayservicelocationsupport/FragmentLocationActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/googleplayservicelocationsupport/LocationFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/java/com/googleplayservicelocationsupport/LocationFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/googleplayservicelocationsupport/LocationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/java/com/googleplayservicelocationsupport/LocationService.java -------------------------------------------------------------------------------- /app/src/main/java/com/googleplayservicelocationsupport/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/java/com/googleplayservicelocationsupport/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_fragment_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/layout/activity_fragment_location.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /google-support-location/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /google-support-location/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/build.gradle -------------------------------------------------------------------------------- /google-support-location/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/proguard-rules.pro -------------------------------------------------------------------------------- /google-support-location/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocation.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationActivity.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationCompatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationCompatActivity.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationFragment.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationIntentService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationIntentService.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationService.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationSupportFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/AppLocationSupportFragment.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/GoogleContextSupportLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/GoogleContextSupportLocation.java -------------------------------------------------------------------------------- /google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/GoogleSupportLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/google-support-location/src/main/java/com/github/akashandroid90/googlesupport/location/GoogleSupportLocation.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/four.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/images/four.png -------------------------------------------------------------------------------- /images/one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/images/one.png -------------------------------------------------------------------------------- /images/three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/images/three.png -------------------------------------------------------------------------------- /images/two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akashjaindev/GooglePlayServiceLocationSupport/HEAD/images/two.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------