├── .gitignore ├── README.md ├── addons ├── TestIconPack │ ├── TestIconPack.zip │ └── thumbnail.png └── addons.json ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ └── rwiftkey │ │ └── themes │ │ ├── IHomeCallbacks.aidl │ │ ├── IPrivilegedService.aidl │ │ ├── IRemoteService.aidl │ │ ├── IRemoteServiceCallbacks.aidl │ │ ├── ISettingsCallbacks.aidl │ │ └── model │ │ └── Theme.aidl │ ├── assets │ └── xposed_init │ ├── ic_launcher-playstore.png │ ├── java │ └── rwiftkey │ │ └── themes │ │ ├── MainActivity.kt │ │ ├── RwiftkeyApplication.kt │ │ ├── core │ │ ├── AppPreferences.kt │ │ ├── Constants.kt │ │ ├── Operations.kt │ │ ├── Session.kt │ │ └── Utils.kt │ │ ├── di │ │ └── Modules.kt │ │ ├── model │ │ ├── FeatureFlags.kt │ │ ├── SimpleApplication.kt │ │ └── Themes.kt │ │ ├── remoteservice │ │ ├── RemoteService.kt │ │ └── RemoteServiceProvider.kt │ │ ├── rootservice │ │ ├── PrivilegedProvider.kt │ │ └── PrivilegedService.kt │ │ ├── ui │ │ ├── components │ │ │ ├── BottomSheetContent.kt │ │ │ ├── BottomSheetDivisor.kt │ │ │ ├── ContinueWithXposedContainer.kt │ │ │ ├── CustomBottomSheet.kt │ │ │ ├── DialogKeyboardSelection.kt │ │ │ ├── EasterEggContainer.kt │ │ │ ├── HomeAppBar.kt │ │ │ ├── HomeScreenBottomFAB.kt │ │ │ ├── HomeScreenCenterContainer.kt │ │ │ ├── HomeThemeSection.kt │ │ │ ├── LibrariesDialog.kt │ │ │ ├── LoadingOverlay.kt │ │ │ ├── NoKeyboardsAvailDialog.kt │ │ │ ├── PatchMenu.kt │ │ │ ├── PreferenceItem.kt │ │ │ ├── PreferenceTitle.kt │ │ │ ├── RwiftkeyAppBar.kt │ │ │ ├── RwiftkeyButton.kt │ │ │ ├── RwiftkeyLoadThemesButton.kt │ │ │ ├── RwiftkeyMainFAB.kt │ │ │ ├── RwiftkeyPaletteButton.kt │ │ │ ├── SelectedThemeBottomSheet.kt │ │ │ ├── SimpleListButtom.kt │ │ │ ├── ThemeCard.kt │ │ │ └── ThemeThumb.kt │ │ ├── screen │ │ │ ├── RwiftkeyApp.kt │ │ │ ├── RwiftkeyNavHost.kt │ │ │ ├── about │ │ │ │ ├── AboutScreen.kt │ │ │ │ ├── AboutUIState.kt │ │ │ │ └── AboutViewModel.kt │ │ │ ├── home │ │ │ │ ├── HomeScreen.kt │ │ │ │ ├── HomeUIState.kt │ │ │ │ └── HomeViewModel.kt │ │ │ └── settings │ │ │ │ ├── SettingsScreen.kt │ │ │ │ ├── SettingsUIState.kt │ │ │ │ └── SettingsViewModel.kt │ │ ├── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── util │ │ │ └── LaunchActivityResult.kt │ │ └── xposed │ │ └── XposedInit.kt │ └── res │ ├── drawable-v24 │ ├── easter_egg.gif │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── accountcircle.xml │ ├── add.xml │ ├── arrow_back.xml │ ├── arrow_forward.xml │ ├── code.xml │ ├── delete.xml │ ├── extension.xml │ ├── ic_launcher_background.xml │ ├── icon_mono.xml │ ├── info.xml │ ├── keyboard.xml │ ├── no_keyboard.xml │ ├── palette.xml │ ├── refresh.xml │ └── settings.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── values-night-v31 │ └── colors.xml │ ├── values-night │ └── colors.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-v31 │ ├── colors.xml │ └── themes.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ ├── data_extraction_rules.xml │ └── provider_paths.xml ├── extras ├── feature_flags.json └── rootless_guide.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lint.xml ├── settings.gradle.kts ├── stubs ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── android │ └── app │ ├── ActivityThread.java │ ├── ContextImpl.java │ └── IActivityManager.java └── versions.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/README.md -------------------------------------------------------------------------------- /addons/TestIconPack/TestIconPack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/addons/TestIconPack/TestIconPack.zip -------------------------------------------------------------------------------- /addons/TestIconPack/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/addons/TestIconPack/thumbnail.png -------------------------------------------------------------------------------- /addons/addons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/addons/addons.json -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/aidl/rwiftkey/themes/IHomeCallbacks.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/aidl/rwiftkey/themes/IHomeCallbacks.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/rwiftkey/themes/IPrivilegedService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/aidl/rwiftkey/themes/IPrivilegedService.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/rwiftkey/themes/IRemoteService.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/aidl/rwiftkey/themes/IRemoteService.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/rwiftkey/themes/IRemoteServiceCallbacks.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/aidl/rwiftkey/themes/IRemoteServiceCallbacks.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/rwiftkey/themes/ISettingsCallbacks.aidl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/aidl/rwiftkey/themes/ISettingsCallbacks.aidl -------------------------------------------------------------------------------- /app/src/main/aidl/rwiftkey/themes/model/Theme.aidl: -------------------------------------------------------------------------------- 1 | package rwiftkey.themes.model; 2 | 3 | parcelable Theme; -------------------------------------------------------------------------------- /app/src/main/assets/xposed_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/assets/xposed_init -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/RwiftkeyApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/RwiftkeyApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/core/AppPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/core/AppPreferences.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/core/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/core/Constants.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/core/Operations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/core/Operations.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/core/Session.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/core/Session.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/core/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/core/Utils.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/di/Modules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/di/Modules.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/model/FeatureFlags.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/model/FeatureFlags.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/model/SimpleApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/model/SimpleApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/model/Themes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/model/Themes.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/remoteservice/RemoteService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/remoteservice/RemoteService.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/remoteservice/RemoteServiceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/remoteservice/RemoteServiceProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/rootservice/PrivilegedProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/rootservice/PrivilegedProvider.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/rootservice/PrivilegedService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/rootservice/PrivilegedService.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/BottomSheetContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/BottomSheetContent.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/BottomSheetDivisor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/BottomSheetDivisor.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/ContinueWithXposedContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/ContinueWithXposedContainer.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/CustomBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/CustomBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/DialogKeyboardSelection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/DialogKeyboardSelection.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/EasterEggContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/EasterEggContainer.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/HomeAppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/HomeAppBar.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/HomeScreenBottomFAB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/HomeScreenBottomFAB.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/HomeScreenCenterContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/HomeScreenCenterContainer.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/HomeThemeSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/HomeThemeSection.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/LibrariesDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/LibrariesDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/LoadingOverlay.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/LoadingOverlay.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/NoKeyboardsAvailDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/NoKeyboardsAvailDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/PatchMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/PatchMenu.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/PreferenceItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/PreferenceItem.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/PreferenceTitle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/PreferenceTitle.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyAppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyAppBar.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyButton.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyLoadThemesButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyLoadThemesButton.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyMainFAB.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyMainFAB.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyPaletteButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/RwiftkeyPaletteButton.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/SelectedThemeBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/SelectedThemeBottomSheet.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/SimpleListButtom.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/SimpleListButtom.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/ThemeCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/ThemeCard.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/components/ThemeThumb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/components/ThemeThumb.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/RwiftkeyApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/RwiftkeyApp.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/RwiftkeyNavHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/RwiftkeyNavHost.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/about/AboutScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/about/AboutScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/about/AboutUIState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/about/AboutUIState.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/about/AboutViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/about/AboutViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/home/HomeScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/home/HomeUIState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/home/HomeUIState.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/home/HomeViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/settings/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/settings/SettingsScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/settings/SettingsUIState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/settings/SettingsUIState.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/screen/settings/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/screen/settings/SettingsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/ui/util/LaunchActivityResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/ui/util/LaunchActivityResult.kt -------------------------------------------------------------------------------- /app/src/main/java/rwiftkey/themes/xposed/XposedInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/java/rwiftkey/themes/xposed/XposedInit.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/easter_egg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable-v24/easter_egg.gif -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/accountcircle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/accountcircle.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/add.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/arrow_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/arrow_forward.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/arrow_forward.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/code.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/code.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/delete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/delete.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/extension.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_mono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/icon_mono.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/keyboard.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/no_keyboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/no_keyboard.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/palette.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/palette.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/refresh.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/drawable/settings.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/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/VegaBobo/rwiftkey-themes/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/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values-night-v31/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values-night/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values-v31/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v31/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values-v31/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/app/src/main/res/xml/provider_paths.xml -------------------------------------------------------------------------------- /extras/feature_flags.json: -------------------------------------------------------------------------------- 1 | { 2 | "enable_addons_feature": false 3 | } 4 | -------------------------------------------------------------------------------- /extras/rootless_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/extras/rootless_guide.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/lint.xml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /stubs/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /stubs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/stubs/build.gradle.kts -------------------------------------------------------------------------------- /stubs/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stubs/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/stubs/proguard-rules.pro -------------------------------------------------------------------------------- /stubs/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/stubs/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /stubs/src/main/java/android/app/ActivityThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/stubs/src/main/java/android/app/ActivityThread.java -------------------------------------------------------------------------------- /stubs/src/main/java/android/app/ContextImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/stubs/src/main/java/android/app/ContextImpl.java -------------------------------------------------------------------------------- /stubs/src/main/java/android/app/IActivityManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/stubs/src/main/java/android/app/IActivityManager.java -------------------------------------------------------------------------------- /versions.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VegaBobo/rwiftkey-themes/HEAD/versions.properties --------------------------------------------------------------------------------