├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── github │ │ └── florent37 │ │ └── applicationprovider │ │ ├── MainActivity.kt │ │ ├── MySingleton.kt │ │ ├── SecondActivity.kt │ │ ├── dagger │ │ ├── AppComponent.kt │ │ ├── AppModule.kt │ │ └── DaggerInitializer.kt │ │ ├── java │ │ └── PreferencesManager.java │ │ ├── stetho │ │ └── StethoInitializer.kt │ │ └── timber │ │ └── TimberInitializer.kt │ └── 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 ├── applicationprovider ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── github │ └── florent37 │ └── application │ └── provider │ ├── ActivityProvider.kt │ ├── ApplicationProvider.kt │ ├── EmptyProvider.kt │ └── ProviderInitializer.kt ├── gradle.properties ├── gradle ├── bintray-android-v1.gradle ├── bintray-java-v1.gradle ├── install-v1.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── publish.sh └── settings.gradle /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/MySingleton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/MySingleton.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/SecondActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/SecondActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/dagger/AppComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/dagger/AppComponent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/dagger/AppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/dagger/AppModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/dagger/DaggerInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/dagger/DaggerInitializer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/java/PreferencesManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/java/PreferencesManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/stetho/StethoInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/stetho/StethoInitializer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/florent37/applicationprovider/timber/TimberInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/java/com/github/florent37/applicationprovider/timber/TimberInitializer.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/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/florent37/ApplicationProvider/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/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /applicationprovider/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /applicationprovider/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/build.gradle -------------------------------------------------------------------------------- /applicationprovider/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/proguard-rules.pro -------------------------------------------------------------------------------- /applicationprovider/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /applicationprovider/src/main/java/com/github/florent37/application/provider/ActivityProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/src/main/java/com/github/florent37/application/provider/ActivityProvider.kt -------------------------------------------------------------------------------- /applicationprovider/src/main/java/com/github/florent37/application/provider/ApplicationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/src/main/java/com/github/florent37/application/provider/ApplicationProvider.kt -------------------------------------------------------------------------------- /applicationprovider/src/main/java/com/github/florent37/application/provider/EmptyProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/src/main/java/com/github/florent37/application/provider/EmptyProvider.kt -------------------------------------------------------------------------------- /applicationprovider/src/main/java/com/github/florent37/application/provider/ProviderInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/applicationprovider/src/main/java/com/github/florent37/application/provider/ProviderInitializer.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/bintray-android-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradle/bintray-android-v1.gradle -------------------------------------------------------------------------------- /gradle/bintray-java-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradle/bintray-java-v1.gradle -------------------------------------------------------------------------------- /gradle/install-v1.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradle/install-v1.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/gradlew.bat -------------------------------------------------------------------------------- /publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/publish.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florent37/ApplicationProvider/HEAD/settings.gradle --------------------------------------------------------------------------------