├── .github └── workflows │ ├── android-package.yml │ ├── android.yml │ ├── codacy.yml │ └── codeql.yml ├── .gitignore ├── BUILD.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro ├── schemas │ └── dev.develsinthedetails.eatpoopyoucat.data.AppDatabase │ │ ├── 1.json │ │ ├── 2.json │ │ └── 3.json └── src │ ├── androidTest │ └── java │ │ └── dev │ │ └── develsinthedetails │ │ └── eatpoopyoucat │ │ ├── ExampleInstrumentedTest.kt │ │ ├── data │ │ └── tests │ │ │ └── GameDaoTests.kt │ │ ├── ui │ │ └── preview │ │ │ └── GenerateScreenShots.kt │ │ ├── utilities │ │ ├── MainTestRunner.kt │ │ └── TestUtils.kt │ │ └── viewmodels │ │ ├── ImportGamesViewModelTest.kt │ │ └── test │ │ └── DrawViewModelTest.kt │ ├── debug │ ├── ic_launcher-playstore.png │ ├── res │ │ ├── drawable │ │ │ ├── ic_launcher_debug_foreground.xml │ │ │ └── ic_launcher_foreground.xml │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ └── values │ │ │ └── ic_launcher_background.xml │ └── values │ │ └── ic_launcher_background.xml │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── metadata │ ├── ic_launcher-playstore.png │ ├── java │ │ └── dev │ │ │ └── develsinthedetails │ │ │ └── eatpoopyoucat │ │ │ ├── ImportGamesActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── MainApplication.kt │ │ │ ├── SharedPref.kt │ │ │ ├── data │ │ │ ├── AppDatabase.kt │ │ │ ├── AppRepository.kt │ │ │ ├── Converters.kt │ │ │ ├── Coordinates.kt │ │ │ ├── DatabaseModule.kt │ │ │ ├── Entry.kt │ │ │ ├── EntryDao.kt │ │ │ ├── Game.kt │ │ │ ├── GameDao.kt │ │ │ ├── GameWithEntries.kt │ │ │ ├── Line.kt │ │ │ ├── LineProperties.kt │ │ │ ├── LineSegment.kt │ │ │ ├── Player.kt │ │ │ ├── PlayerDao.kt │ │ │ └── Serializers.kt │ │ │ ├── ui │ │ │ ├── CreditsScreen.kt │ │ │ ├── EatPoopYouCatApp.kt │ │ │ ├── ImportGames.kt │ │ │ ├── NicknameScreen.kt │ │ │ ├── PrivacyPolicyScreen.kt │ │ │ ├── draw │ │ │ │ ├── AwaitDragMotionModifier.kt │ │ │ │ └── DrawScreen.kt │ │ │ ├── helpers │ │ │ │ ├── Components.kt │ │ │ │ └── Scaffolds.kt.kt │ │ │ ├── home │ │ │ │ └── HomeScreen.kt │ │ │ ├── previousgames │ │ │ │ ├── PreviousGameScreen.kt │ │ │ │ ├── PreviousGameScreenPreview.kt │ │ │ │ └── PreviousGamesScreen.kt │ │ │ ├── sentence │ │ │ │ └── SentenceScreen.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ ├── utilities │ │ │ ├── Constants.kt │ │ │ ├── DrawingHelpers.kt │ │ │ ├── Extensions.kt │ │ │ ├── FileUtils.kt │ │ │ ├── Gzip.kt │ │ │ ├── ImageExport.kt │ │ │ └── ReadMetadata.kt │ │ │ └── viewmodels │ │ │ ├── DrawMode.kt │ │ │ ├── DrawViewModel.kt │ │ │ ├── GreetingViewModel.kt │ │ │ ├── ImportGamesViewModel.kt │ │ │ ├── NicknameViewModel.kt │ │ │ ├── PreviousGameViewModel.kt │ │ │ ├── PreviousGamesViewModel.kt │ │ │ └── SentenceViewModel.kt │ └── res │ │ ├── drawable │ │ ├── ic_eraser_black_24.xml │ │ ├── ic_launcher_debug_foreground.xml │ │ ├── ic_launcher_foreground.xml │ │ └── ic_launcher_mono.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-de │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-night │ │ ├── colors.xml │ │ └── themes.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── dev │ └── develsinthedetails │ └── eatpoopyoucat │ └── utilities │ ├── ExtensionsTest.kt │ └── TestUtils.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── EPYC_icon-mono.svg ├── EPYC_icon.svg └── featureGraphic.svg ├── lightdark.sh ├── metadata └── android │ ├── de-DE │ ├── full_description.txt │ ├── privacy_policy.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ ├── sevenInchScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ └── tenInchScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── privacy_policy.txt │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── full_description.txt │ ├── images │ │ ├── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ ├── sevenInchScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ │ └── tenInchScreenshots │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ └── 4.png │ ├── privacy_policy.txt │ ├── short_description.txt │ └── title.txt │ ├── ta-IN │ ├── full_description.txt │ ├── privacy_policy.txt │ ├── short_description.txt │ └── title.txt │ └── zh-CN │ ├── full_description.txt │ ├── privacy_policy.txt │ ├── short_description.txt │ └── title.txt ├── screenShots.sh ├── settings.gradle.kts └── tag.py /.github/workflows/android-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/.github/workflows/android-package.yml -------------------------------------------------------------------------------- /.github/workflows/android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/.github/workflows/android.yml -------------------------------------------------------------------------------- /.github/workflows/codacy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/.github/workflows/codacy.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /libs 3 | /release -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/schemas/dev.develsinthedetails.eatpoopyoucat.data.AppDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/schemas/dev.develsinthedetails.eatpoopyoucat.data.AppDatabase/1.json -------------------------------------------------------------------------------- /app/schemas/dev.develsinthedetails.eatpoopyoucat.data.AppDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/schemas/dev.develsinthedetails.eatpoopyoucat.data.AppDatabase/2.json -------------------------------------------------------------------------------- /app/schemas/dev.develsinthedetails.eatpoopyoucat.data.AppDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/schemas/dev.develsinthedetails.eatpoopyoucat.data.AppDatabase/3.json -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/data/tests/GameDaoTests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/data/tests/GameDaoTests.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/ui/preview/GenerateScreenShots.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/ui/preview/GenerateScreenShots.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/utilities/MainTestRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/utilities/MainTestRunner.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/utilities/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/utilities/TestUtils.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/ImportGamesViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/ImportGamesViewModelTest.kt -------------------------------------------------------------------------------- /app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/test/DrawViewModelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/androidTest/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/test/DrawViewModelTest.kt -------------------------------------------------------------------------------- /app/src/debug/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/debug/res/drawable/ic_launcher_debug_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/drawable/ic_launcher_debug_foreground.xml -------------------------------------------------------------------------------- /app/src/debug/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/debug/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/debug/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/debug/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/assets/metadata: -------------------------------------------------------------------------------- 1 | ../../../../metadata/ -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ImportGamesActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ImportGamesActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/MainApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/SharedPref.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/SharedPref.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/AppDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/AppDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/AppRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/AppRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Converters.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Coordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Coordinates.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/DatabaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/DatabaseModule.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Entry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Entry.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/EntryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/EntryDao.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Game.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Game.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/GameDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/GameDao.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/GameWithEntries.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/GameWithEntries.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Line.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Line.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/LineProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/LineProperties.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/LineSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/LineSegment.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Player.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Player.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/PlayerDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/PlayerDao.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Serializers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/data/Serializers.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/CreditsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/CreditsScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/EatPoopYouCatApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/EatPoopYouCatApp.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/ImportGames.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/ImportGames.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/NicknameScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/NicknameScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/PrivacyPolicyScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/PrivacyPolicyScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/draw/AwaitDragMotionModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/draw/AwaitDragMotionModifier.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/draw/DrawScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/draw/DrawScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/helpers/Components.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/helpers/Components.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/helpers/Scaffolds.kt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/helpers/Scaffolds.kt.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/home/HomeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/previousgames/PreviousGameScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/previousgames/PreviousGameScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/previousgames/PreviousGameScreenPreview.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/previousgames/PreviousGameScreenPreview.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/previousgames/PreviousGamesScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/previousgames/PreviousGamesScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/sentence/SentenceScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/sentence/SentenceScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/DrawingHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/DrawingHelpers.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/Extensions.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/FileUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/Gzip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/Gzip.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/ImageExport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/ImageExport.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/ReadMetadata.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/utilities/ReadMetadata.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/DrawMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/DrawMode.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/DrawViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/DrawViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/GreetingViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/GreetingViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/ImportGamesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/ImportGamesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/NicknameViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/NicknameViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/PreviousGameViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/PreviousGameViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/PreviousGamesViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/PreviousGamesViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/SentenceViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/java/dev/develsinthedetails/eatpoopyoucat/viewmodels/SentenceViewModel.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_eraser_black_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/drawable/ic_eraser_black_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_debug_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/drawable/ic_launcher_debug_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_mono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/drawable/ic_launcher_mono.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/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/JamesOsborn-SE/eat-poop-you-cat-android/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/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/dev/develsinthedetails/eatpoopyoucat/utilities/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/test/java/dev/develsinthedetails/eatpoopyoucat/utilities/ExtensionsTest.kt -------------------------------------------------------------------------------- /app/src/test/java/dev/develsinthedetails/eatpoopyoucat/utilities/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/app/src/test/java/dev/develsinthedetails/eatpoopyoucat/utilities/TestUtils.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/EPYC_icon-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/images/EPYC_icon-mono.svg -------------------------------------------------------------------------------- /images/EPYC_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/images/EPYC_icon.svg -------------------------------------------------------------------------------- /images/featureGraphic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/images/featureGraphic.svg -------------------------------------------------------------------------------- /lightdark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/lightdark.sh -------------------------------------------------------------------------------- /metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /metadata/android/de-DE/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/de-DE/privacy_policy.txt -------------------------------------------------------------------------------- /metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Eat Poop You Cat: Stille Post 2 | -------------------------------------------------------------------------------- /metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /metadata/android/en-US/images/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/images/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /metadata/android/en-US/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/privacy_policy.txt -------------------------------------------------------------------------------- /metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Eat Poop You Cat -------------------------------------------------------------------------------- /metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/sevenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/sevenInchScreenshots/1.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/sevenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/sevenInchScreenshots/2.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/sevenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/sevenInchScreenshots/3.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/sevenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/sevenInchScreenshots/4.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/tenInchScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/tenInchScreenshots/1.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/tenInchScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/tenInchScreenshots/2.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/tenInchScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/tenInchScreenshots/3.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/images/tenInchScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/images/tenInchScreenshots/4.png -------------------------------------------------------------------------------- /metadata/android/fr-FR/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/privacy_policy.txt -------------------------------------------------------------------------------- /metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Eat Poop You Cat 2 | -------------------------------------------------------------------------------- /metadata/android/ta-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/ta-IN/full_description.txt -------------------------------------------------------------------------------- /metadata/android/ta-IN/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/ta-IN/privacy_policy.txt -------------------------------------------------------------------------------- /metadata/android/ta-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/ta-IN/short_description.txt -------------------------------------------------------------------------------- /metadata/android/ta-IN/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/ta-IN/title.txt -------------------------------------------------------------------------------- /metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /metadata/android/zh-CN/privacy_policy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/metadata/android/zh-CN/privacy_policy.txt -------------------------------------------------------------------------------- /metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | Eat Poop You Cat 有点像用电话写文本或画画。 2 | -------------------------------------------------------------------------------- /metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Eat Poop You Cat 2 | -------------------------------------------------------------------------------- /screenShots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/screenShots.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesOsborn-SE/eat-poop-you-cat-android/HEAD/tag.py --------------------------------------------------------------------------------