├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── de │ │ └── bigboot │ │ └── watch4payswitch │ │ ├── AccessibilityService.kt │ │ ├── ActivityRuleFragment.kt │ │ ├── AppPreferences.kt │ │ ├── MainActivity.kt │ │ ├── SelectPredefinedActivity.kt │ │ └── SelectPredefinedAdapter.kt │ └── res │ ├── drawable │ ├── activity_select_predefined_item_background.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── ic_predefined.xml │ └── ic_rule_add.xml │ ├── layout │ ├── activity_main.xml │ ├── activity_select_predefined.xml │ ├── activity_select_predefined_item.xml │ └── fragment_activity_rule.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_adaptive_back.png │ └── ic_launcher_adaptive_fore.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_adaptive_back.png │ └── ic_launcher_adaptive_fore.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_adaptive_back.png │ └── ic_launcher_adaptive_fore.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_adaptive_back.png │ └── ic_launcher_adaptive_fore.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_adaptive_back.png │ └── ic_launcher_adaptive_fore.png │ ├── values │ ├── dimens.xml │ └── strings.xml │ └── xml │ └── accessibility_service_config.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img ├── 1.png ├── 10.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/kotlin/de/bigboot/watch4payswitch/AccessibilityService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/kotlin/de/bigboot/watch4payswitch/AccessibilityService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/bigboot/watch4payswitch/ActivityRuleFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/kotlin/de/bigboot/watch4payswitch/ActivityRuleFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/bigboot/watch4payswitch/AppPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/kotlin/de/bigboot/watch4payswitch/AppPreferences.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/bigboot/watch4payswitch/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/kotlin/de/bigboot/watch4payswitch/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/bigboot/watch4payswitch/SelectPredefinedActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/kotlin/de/bigboot/watch4payswitch/SelectPredefinedActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/de/bigboot/watch4payswitch/SelectPredefinedAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/kotlin/de/bigboot/watch4payswitch/SelectPredefinedAdapter.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/activity_select_predefined_item_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/drawable/activity_select_predefined_item_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_predefined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/drawable/ic_predefined.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_rule_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/drawable/ic_rule_add.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_select_predefined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/layout/activity_select_predefined.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_select_predefined_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/layout/activity_select_predefined_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_activity_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/layout/fragment_activity_rule.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/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/BigBoot/GW4Remap/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/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_back.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_adaptive_fore.png -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/accessibility_service_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/app/src/main/res/xml/accessibility_service_config.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/gradlew.bat -------------------------------------------------------------------------------- /img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/1.png -------------------------------------------------------------------------------- /img/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/10.png -------------------------------------------------------------------------------- /img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/2.png -------------------------------------------------------------------------------- /img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/3.png -------------------------------------------------------------------------------- /img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/4.png -------------------------------------------------------------------------------- /img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/5.png -------------------------------------------------------------------------------- /img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/6.png -------------------------------------------------------------------------------- /img/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/7.png -------------------------------------------------------------------------------- /img/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/8.png -------------------------------------------------------------------------------- /img/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/img/9.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigBoot/GW4Remap/HEAD/settings.gradle.kts --------------------------------------------------------------------------------