├── .gitignore ├── LICENSE ├── README.md ├── app ├── build.gradle ├── lint.xml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── jp │ │ └── water_cell │ │ └── android │ │ └── template │ │ └── MainActivityTest.java │ ├── debug │ └── java │ │ └── jp │ │ └── water_cell │ │ └── android │ │ └── template │ │ └── prngfix │ │ └── PRNGFixes.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── jp │ │ │ └── water_cell │ │ │ └── android │ │ │ └── template │ │ │ ├── MainActivity.java │ │ │ ├── MyApplication.java │ │ │ └── MyService.java │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── release │ └── java │ │ └── jp │ │ └── water_cell │ │ └── android │ │ └── template │ │ └── prngfix │ │ └── PRNGFixes.java │ └── test │ ├── java │ └── jp │ │ └── water_cell │ │ └── android │ │ └── template │ │ ├── MainActivityTest.java │ │ └── TestApplication.java │ └── resources │ └── robolectric.properties ├── circle.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs └── .gitkeep └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/lint.xml -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/jp/water_cell/android/template/MainActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/androidTest/java/jp/water_cell/android/template/MainActivityTest.java -------------------------------------------------------------------------------- /app/src/debug/java/jp/water_cell/android/template/prngfix/PRNGFixes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/debug/java/jp/water_cell/android/template/prngfix/PRNGFixes.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/jp/water_cell/android/template/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/java/jp/water_cell/android/template/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/jp/water_cell/android/template/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/java/jp/water_cell/android/template/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/java/jp/water_cell/android/template/MyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/java/jp/water_cell/android/template/MyService.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/release/java/jp/water_cell/android/template/prngfix/PRNGFixes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/release/java/jp/water_cell/android/template/prngfix/PRNGFixes.java -------------------------------------------------------------------------------- /app/src/test/java/jp/water_cell/android/template/MainActivityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/test/java/jp/water_cell/android/template/MainActivityTest.java -------------------------------------------------------------------------------- /app/src/test/java/jp/water_cell/android/template/TestApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/test/java/jp/water_cell/android/template/TestApplication.java -------------------------------------------------------------------------------- /app/src/test/resources/robolectric.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/app/src/test/resources/robolectric.properties -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/circle.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WaterCell/android-app-template/HEAD/gradlew.bat -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------