├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── gradle.xml ├── misc.xml ├── render.experimental.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── apk └── Chore.apk ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── zeph7 │ │ └── choreapplication │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── zeph7 │ │ │ └── choreapplication │ │ │ ├── activity │ │ │ ├── ChoreActivity.kt │ │ │ ├── EnterChoreActivity.kt │ │ │ ├── MainActivity.kt │ │ │ └── SplashActivity.kt │ │ │ ├── data │ │ │ ├── Chore.kt │ │ │ └── Constants.kt │ │ │ └── model │ │ │ ├── ChoreDatabaseHandler.kt │ │ │ └── ChoreListAdapter.kt │ └── res │ │ ├── anim │ │ ├── blink.xml │ │ ├── bounce.xml │ │ ├── clockwise.xml │ │ ├── fade.xml │ │ ├── fade_in_transition.xml │ │ ├── fade_out_transition.xml │ │ ├── move.xml │ │ ├── slide.xml │ │ ├── slide_down.xml │ │ └── zoom.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_chore.png │ │ ├── ic_chore_list.png │ │ ├── ic_del.png │ │ ├── ic_launcher_background.xml │ │ ├── ic_remove.png │ │ ├── ic_return.png │ │ └── round_edge_button.xml │ │ ├── layout │ │ ├── activity_chore.xml │ │ ├── activity_enter_chore.xml │ │ ├── activity_main.xml │ │ ├── activity_splash.xml │ │ ├── chore_list_item.xml │ │ └── popup.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 │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── zeph7 │ └── choreapplication │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── ic_chore.png ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg ├── img5.jpg ├── img6.jpg ├── img7.jpg ├── img8.jpg └── img9.jpg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/README.md -------------------------------------------------------------------------------- /apk/Chore.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/apk/Chore.apk -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/zeph7/choreapplication/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/androidTest/java/com/zeph7/choreapplication/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/activity/ChoreActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/activity/ChoreActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/activity/EnterChoreActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/activity/EnterChoreActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/activity/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/activity/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/data/Chore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/data/Chore.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/data/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/data/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/model/ChoreDatabaseHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/model/ChoreDatabaseHandler.kt -------------------------------------------------------------------------------- /app/src/main/java/com/zeph7/choreapplication/model/ChoreListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/java/com/zeph7/choreapplication/model/ChoreListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/res/anim/blink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/blink.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/bounce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/bounce.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/clockwise.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/clockwise.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/fade.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_in_transition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/fade_in_transition.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fade_out_transition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/fade_out_transition.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/move.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/move.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/slide.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/slide_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/slide_down.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/zoom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/anim/zoom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/ic_chore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_chore_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/ic_chore_list.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/ic_del.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/ic_remove.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/ic_return.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/round_edge_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/drawable/round_edge_button.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_chore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/layout/activity_chore.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_enter_chore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/layout/activity_enter_chore.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/layout/activity_splash.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/chore_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/layout/chore_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/layout/popup.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/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/zeph7/android-kotlin-Chore-app/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/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/zeph7/choreapplication/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/app/src/test/java/com/zeph7/choreapplication/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/ic_chore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/ic_chore.png -------------------------------------------------------------------------------- /screenshots/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img1.jpg -------------------------------------------------------------------------------- /screenshots/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img2.jpg -------------------------------------------------------------------------------- /screenshots/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img3.jpg -------------------------------------------------------------------------------- /screenshots/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img4.jpg -------------------------------------------------------------------------------- /screenshots/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img5.jpg -------------------------------------------------------------------------------- /screenshots/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img6.jpg -------------------------------------------------------------------------------- /screenshots/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img7.jpg -------------------------------------------------------------------------------- /screenshots/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img8.jpg -------------------------------------------------------------------------------- /screenshots/img9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeph7/android-kotlin-Chore-app/HEAD/screenshots/img9.jpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------