├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── charbgr │ │ └── reproduciblehistory │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── charbgr │ │ │ └── reproduciblehistory │ │ │ ├── Extensions.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MainScreenPresenter.kt │ │ │ ├── MainScreenView.kt │ │ │ ├── MainScreenViewModel.kt │ │ │ ├── ViewModelCache.kt │ │ │ └── github │ │ │ ├── GitHubApi.kt │ │ │ └── dao │ │ │ ├── GitHubDAO.kt │ │ │ └── GitHubUser.kt │ └── res │ │ ├── layout │ │ └── activity_main.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 │ └── github │ └── charbgr │ └── reproduciblehistory │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/charbgr/reproduciblehistory/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/androidTest/java/com/github/charbgr/reproduciblehistory/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/Extensions.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/MainScreenPresenter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/MainScreenPresenter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/MainScreenView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/MainScreenView.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/MainScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/MainScreenViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/ViewModelCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/ViewModelCache.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/github/GitHubApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/github/GitHubApi.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/github/dao/GitHubDAO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/github/dao/GitHubDAO.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/charbgr/reproduciblehistory/github/dao/GitHubUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/java/com/github/charbgr/reproduciblehistory/github/dao/GitHubUser.kt -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/github/charbgr/reproduciblehistory/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/app/src/test/java/com/github/charbgr/reproduciblehistory/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charbgr/ReproducibleHistory/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------