├── .github └── workflows │ └── android_build.yml ├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── handheld │ │ └── exp │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── handheld │ │ │ └── exp │ │ │ ├── MainActivity.kt │ │ │ ├── OverlayService.kt │ │ │ ├── OverlayViewModel.kt │ │ │ ├── adapters │ │ │ └── ItemAdapter.kt │ │ │ ├── models │ │ │ ├── AppContext.kt │ │ │ ├── ButtonItem.kt │ │ │ ├── Game.kt │ │ │ ├── GameContext.kt │ │ │ ├── GameMedia.kt │ │ │ ├── Item.kt │ │ │ ├── NavigationItem.kt │ │ │ ├── Option.kt │ │ │ ├── OptionItem.kt │ │ │ ├── OverlayState.kt │ │ │ ├── System.kt │ │ │ └── TextItem.kt │ │ │ ├── modules │ │ │ ├── Module.kt │ │ │ ├── ModuleLoader.kt │ │ │ ├── content │ │ │ │ ├── ContentModule.kt │ │ │ │ └── PdfViewer.kt │ │ │ ├── core │ │ │ │ └── CoreModule.kt │ │ │ ├── devices │ │ │ │ └── rp4pro │ │ │ │ │ └── Rp4ProModule.kt │ │ │ ├── emulator │ │ │ │ └── EmulatorModule.kt │ │ │ ├── quickactions │ │ │ │ ├── QuickActionsModule.kt │ │ │ │ └── StatusReceiver.kt │ │ │ └── settings │ │ │ │ └── SettingsModule.kt │ │ │ ├── receivers │ │ │ ├── DataReceiver.kt │ │ │ └── OverlayServiceReceiver.kt │ │ │ └── utils │ │ │ ├── AppUtils.kt │ │ │ ├── CommonShellRunner.kt │ │ │ ├── DisplayUtils.kt │ │ │ ├── GameContextResolver.kt │ │ │ ├── HandlerUtils.kt │ │ │ ├── InfoUtils.kt │ │ │ ├── PreferenceUtils.kt │ │ │ └── ShizukuUtils.kt │ └── res │ │ ├── drawable │ │ ├── arrow.xml │ │ ├── battery.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── item_selector.xml │ │ ├── option_arrow.xml │ │ ├── rounded_bg.xml │ │ └── transparent.xml │ │ ├── font │ │ ├── akrobat_bold.ttf │ │ ├── akrobat_regular.ttf │ │ └── akrobat_semibold.ttf │ │ ├── layout │ │ ├── common_item_layout.xml │ │ ├── game_info_layout.xml │ │ ├── horizontal_divider_layout.xml │ │ ├── main_activity_layout.xml │ │ ├── overlay_layout.xml │ │ ├── pdf_view_layout.xml │ │ └── vertical_divider_layout.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── app_logo.png │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── app_logo.png │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── app_logo.png │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── app_logo.png │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── app_logo.png │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── handheld │ └── exp │ └── ExampleUnitTest.kt ├── assets └── images │ ├── screen1.png │ ├── screen2.png │ ├── screen3.png │ └── video.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts ├── es-de │ ├── game-end │ │ └── game_end.sh │ └── game-start │ │ └── game_start.sh └── shizuku │ └── start_shizuku.sh └── settings.gradle.kts /.github/workflows/android_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.github/workflows/android_build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/handheld/exp/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/androidTest/java/com/handheld/exp/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/OverlayService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/OverlayService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/OverlayViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/OverlayViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/adapters/ItemAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/adapters/ItemAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/AppContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/AppContext.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/ButtonItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/ButtonItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/Game.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/Game.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/GameContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/GameContext.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/GameMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/GameMedia.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/Item.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/Item.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/NavigationItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/NavigationItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/Option.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/Option.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/OptionItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/OptionItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/OverlayState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/OverlayState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/System.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/System.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/models/TextItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/models/TextItem.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/Module.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/ModuleLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/ModuleLoader.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/content/ContentModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/content/ContentModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/content/PdfViewer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/content/PdfViewer.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/core/CoreModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/core/CoreModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/devices/rp4pro/Rp4ProModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/devices/rp4pro/Rp4ProModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/emulator/EmulatorModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/emulator/EmulatorModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/quickactions/QuickActionsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/quickactions/QuickActionsModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/quickactions/StatusReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/quickactions/StatusReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/modules/settings/SettingsModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/modules/settings/SettingsModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/receivers/DataReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/receivers/DataReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/receivers/OverlayServiceReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/receivers/OverlayServiceReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/AppUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/AppUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/CommonShellRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/CommonShellRunner.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/DisplayUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/DisplayUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/GameContextResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/GameContextResolver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/HandlerUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/HandlerUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/InfoUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/InfoUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/PreferenceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/PreferenceUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/handheld/exp/utils/ShizukuUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/java/com/handheld/exp/utils/ShizukuUtils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/battery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/battery.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/item_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/item_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/option_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/option_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/rounded_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/rounded_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/transparent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/drawable/transparent.xml -------------------------------------------------------------------------------- /app/src/main/res/font/akrobat_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/font/akrobat_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/akrobat_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/font/akrobat_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/akrobat_semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/font/akrobat_semibold.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/common_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/common_item_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/game_info_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/game_info_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/horizontal_divider_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/horizontal_divider_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_activity_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/main_activity_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/overlay_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/overlay_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/pdf_view_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/pdf_view_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/vertical_divider_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/layout/vertical_divider_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/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/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-hdpi/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-mdpi/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xhdpi/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xxhdpi/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/app_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xxxhdpi/app_logo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/handheld/exp/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/app/src/test/java/com/handheld/exp/ExampleUnitTest.kt -------------------------------------------------------------------------------- /assets/images/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/assets/images/screen1.png -------------------------------------------------------------------------------- /assets/images/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/assets/images/screen2.png -------------------------------------------------------------------------------- /assets/images/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/assets/images/screen3.png -------------------------------------------------------------------------------- /assets/images/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/assets/images/video.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/gradlew.bat -------------------------------------------------------------------------------- /scripts/es-de/game-end/game_end.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/scripts/es-de/game-end/game_end.sh -------------------------------------------------------------------------------- /scripts/es-de/game-start/game_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/scripts/es-de/game-start/game_start.sh -------------------------------------------------------------------------------- /scripts/shizuku/start_shizuku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/scripts/shizuku/start_shizuku.sh -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Teppichseite/HandheldExp/HEAD/settings.gradle.kts --------------------------------------------------------------------------------