├── .gitignore ├── README.md ├── bintray-push.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lint.xml ├── locationlivedata ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── emreeran │ └── locationlivedata │ └── LocationLiveData.kt ├── maven-install.gradle ├── project-properties.gradle ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── emreeran │ │ └── locationlivedata │ │ └── sample │ │ ├── BlueFragment.kt │ │ ├── BlueHandler.kt │ │ ├── JavaViewModel.java │ │ ├── LocationViewModel.kt │ │ ├── MainActivity.kt │ │ ├── RedFragment.kt │ │ ├── RedHandler.kt │ │ └── util │ │ ├── AutoClearedValue.kt │ │ └── LocationPermissions.kt │ └── res │ ├── drawable-hdpi │ └── ic_arrow_right.png │ ├── drawable-mdpi │ └── ic_arrow_right.png │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable-xhdpi │ └── ic_arrow_right.png │ ├── drawable-xxhdpi │ └── ic_arrow_right.png │ ├── drawable-xxxhdpi │ └── ic_arrow_right.png │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ ├── blue_fragment.xml │ ├── main_activity.xml │ └── red_fragment.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 │ ├── navigation │ └── main_navigation.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── settings.gradle └── versions.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/README.md -------------------------------------------------------------------------------- /bintray-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/bintray-push.gradle -------------------------------------------------------------------------------- /dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/dependencies.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/lint.xml -------------------------------------------------------------------------------- /locationlivedata/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /locationlivedata/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/locationlivedata/build.gradle -------------------------------------------------------------------------------- /locationlivedata/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/locationlivedata/proguard-rules.pro -------------------------------------------------------------------------------- /locationlivedata/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/locationlivedata/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /locationlivedata/src/main/java/com/emreeran/locationlivedata/LocationLiveData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/locationlivedata/src/main/java/com/emreeran/locationlivedata/LocationLiveData.kt -------------------------------------------------------------------------------- /maven-install.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/maven-install.gradle -------------------------------------------------------------------------------- /project-properties.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/project-properties.gradle -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/BlueFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/BlueFragment.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/BlueHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/BlueHandler.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/JavaViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/JavaViewModel.java -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/LocationViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/LocationViewModel.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/MainActivity.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/RedFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/RedFragment.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/RedHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/RedHandler.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/util/AutoClearedValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/util/AutoClearedValue.kt -------------------------------------------------------------------------------- /sample/src/main/java/com/emreeran/locationlivedata/sample/util/LocationPermissions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/java/com/emreeran/locationlivedata/sample/util/LocationPermissions.kt -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable-hdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable-mdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable-xhdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable-xxhdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxxhdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable-xxxhdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/blue_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/layout/blue_fragment.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/layout/main_activity.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/red_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/layout/red_fragment.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /sample/src/main/res/navigation/main_navigation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/navigation/main_navigation.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/settings.gradle -------------------------------------------------------------------------------- /versions.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emreeran/LocationLiveData/HEAD/versions.gradle --------------------------------------------------------------------------------