├── .gitignore ├── .idea ├── .gitignore ├── .name ├── AndroidProjectSystem.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── icon.png ├── inspectionProfiles │ └── Project_Default.xml ├── jarRepositories.xml ├── kotlinc.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── PRIVACY.md ├── README.md ├── app ├── .gitignore ├── FeatureImage.afdesign ├── FeatureImage.png ├── LauncherBackground.afphoto ├── LauncherBackground.png ├── LauncherBackground.svg ├── LauncherForeground.afdesign ├── LauncherForeground.svg ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── tk │ │ └── zwander │ │ └── rootactivitylauncher │ │ ├── App.kt │ │ ├── MainActivity.kt │ │ ├── activities │ │ ├── ShortcutLaunchActivity.kt │ │ └── tasker │ │ │ └── TaskerLaunchComponentConfigureActivity.kt │ │ ├── data │ │ ├── BaseOption.kt │ │ ├── ComponentActionButton.kt │ │ ├── ExtraInfo.kt │ │ ├── FilterMode.kt │ │ ├── PrefManager.kt │ │ ├── Query.kt │ │ ├── SortMode.kt │ │ ├── SortOrder.kt │ │ ├── component │ │ │ ├── ActivityInfo.kt │ │ │ ├── Availability.kt │ │ │ ├── BaseComponentInfo.kt │ │ │ ├── ComponentType.kt │ │ │ ├── ReceiverInfo.kt │ │ │ └── ServiceInfo.kt │ │ ├── model │ │ │ ├── AppModel.kt │ │ │ ├── BaseInfoModel.kt │ │ │ ├── ExtrasDialogModel.kt │ │ │ ├── FavoriteModel.kt │ │ │ └── MainModel.kt │ │ └── tasker │ │ │ └── TaskerLaunchComponentInfo.kt │ │ ├── util │ │ ├── AdvancedSearcher.kt │ │ ├── CollectionUtils.kt │ │ ├── ComponentInfoUtils.kt │ │ ├── ComponentUtils.kt │ │ ├── CompositionLocals.kt │ │ ├── DhizukuUtils.kt │ │ ├── EnabledUtils.kt │ │ ├── InfoGetter.kt │ │ ├── PackageUtils.kt │ │ ├── PermissionResultListener.kt │ │ ├── PermissionUtils.kt │ │ ├── UIUtils.kt │ │ ├── Utils.kt │ │ ├── launch │ │ │ ├── LaunchArgs.kt │ │ │ ├── LaunchStrategy.kt │ │ │ ├── LaunchStrategyRegistry.kt │ │ │ └── LaunchUtils.kt │ │ ├── receiver │ │ │ ├── AdminReceiver.kt │ │ │ └── KnoxLicenseReceiver.kt │ │ └── tasker │ │ │ ├── TaskerLaunchComponentHelper.kt │ │ │ └── TaskerLaunchComponentRunner.kt │ │ └── views │ │ ├── MainView.kt │ │ ├── ScrimView.kt │ │ ├── components │ │ ├── AppItem.kt │ │ ├── AppList.kt │ │ ├── BottomBar.kt │ │ ├── ComponentBar.kt │ │ ├── ComponentGroup.kt │ │ ├── ComponentItem.kt │ │ ├── Menu.kt │ │ ├── OptionGroup.kt │ │ ├── SearchComponent.kt │ │ └── SelectableCard.kt │ │ ├── dialogs │ │ ├── AdvancedUsageDialog.kt │ │ ├── BaseAlertDialog.kt │ │ ├── ComponentInfoDialog.kt │ │ ├── ExtraTypeDialog.kt │ │ ├── ExtrasDialog.kt │ │ ├── FilterDialog.kt │ │ ├── PatreonSupportersDialog.kt │ │ └── SortDialog.kt │ │ └── theme │ │ └── Theme.kt │ └── res │ ├── drawable │ ├── baseline_favorite_24.xml │ ├── ic_baseline_filter_list_24.xml │ ├── ic_baseline_help_outline_24.xml │ ├── ic_baseline_link_24.xml │ ├── ic_baseline_open_in_new_24.xml │ ├── ic_launcher_background.xml │ ├── ic_launcher_foreground.xml │ ├── save.xml │ ├── scroll_to_bottom.xml │ ├── scroll_to_top.xml │ ├── sort.xml │ └── tune.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values-v31 │ └── colors.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── device_admin.xml ├── crowdin.yml ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Root Activity Launcher -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release -------------------------------------------------------------------------------- /app/FeatureImage.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/FeatureImage.afdesign -------------------------------------------------------------------------------- /app/FeatureImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/FeatureImage.png -------------------------------------------------------------------------------- /app/LauncherBackground.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/LauncherBackground.afphoto -------------------------------------------------------------------------------- /app/LauncherBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/LauncherBackground.png -------------------------------------------------------------------------------- /app/LauncherBackground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/LauncherBackground.svg -------------------------------------------------------------------------------- /app/LauncherForeground.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/LauncherForeground.afdesign -------------------------------------------------------------------------------- /app/LauncherForeground.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/LauncherForeground.svg -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/App.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/activities/ShortcutLaunchActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/activities/ShortcutLaunchActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/activities/tasker/TaskerLaunchComponentConfigureActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/activities/tasker/TaskerLaunchComponentConfigureActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/BaseOption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/BaseOption.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/ComponentActionButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/ComponentActionButton.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/ExtraInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/ExtraInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/FilterMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/FilterMode.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/PrefManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/PrefManager.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/Query.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/Query.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/SortMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/SortMode.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/SortOrder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/SortOrder.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ActivityInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ActivityInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/component/Availability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/component/Availability.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/component/BaseComponentInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/component/BaseComponentInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ComponentType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ComponentType.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ReceiverInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ReceiverInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ServiceInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/component/ServiceInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/model/AppModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/model/AppModel.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/model/BaseInfoModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/model/BaseInfoModel.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/model/ExtrasDialogModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/model/ExtrasDialogModel.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/model/FavoriteModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/model/FavoriteModel.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/model/MainModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/model/MainModel.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/data/tasker/TaskerLaunchComponentInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/data/tasker/TaskerLaunchComponentInfo.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/AdvancedSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/AdvancedSearcher.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/CollectionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/CollectionUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/ComponentInfoUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/ComponentInfoUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/ComponentUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/ComponentUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/CompositionLocals.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/CompositionLocals.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/DhizukuUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/DhizukuUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/EnabledUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/EnabledUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/InfoGetter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/InfoGetter.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/PackageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/PackageUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/PermissionResultListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/PermissionResultListener.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/PermissionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/PermissionUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/UIUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/UIUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/Utils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchArgs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchArgs.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchStrategy.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchStrategyRegistry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchStrategyRegistry.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/launch/LaunchUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/receiver/AdminReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/receiver/AdminReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/receiver/KnoxLicenseReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/receiver/KnoxLicenseReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/tasker/TaskerLaunchComponentHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/tasker/TaskerLaunchComponentHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/util/tasker/TaskerLaunchComponentRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/util/tasker/TaskerLaunchComponentRunner.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/MainView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/MainView.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/ScrimView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/ScrimView.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/AppItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/AppItem.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/AppList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/AppList.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/BottomBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/BottomBar.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/ComponentBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/ComponentBar.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/ComponentGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/ComponentGroup.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/ComponentItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/ComponentItem.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/Menu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/Menu.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/OptionGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/OptionGroup.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/SearchComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/SearchComponent.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/components/SelectableCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/components/SelectableCard.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/AdvancedUsageDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/AdvancedUsageDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/BaseAlertDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/BaseAlertDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/ComponentInfoDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/ComponentInfoDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/ExtraTypeDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/ExtraTypeDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/ExtrasDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/ExtrasDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/FilterDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/FilterDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/PatreonSupportersDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/PatreonSupportersDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/SortDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/dialogs/SortDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/tk/zwander/rootactivitylauncher/views/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/java/tk/zwander/rootactivitylauncher/views/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/baseline_favorite_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/baseline_favorite_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_filter_list_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/ic_baseline_filter_list_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_help_outline_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/ic_baseline_help_outline_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_link_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/ic_baseline_link_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_open_in_new_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/ic_baseline_open_in_new_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/save.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scroll_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/scroll_to_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/scroll_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/scroll_to_top.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/sort.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/sort.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/tune.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/drawable/tune.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/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/zacharee/RootActivityLauncher/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/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-v31/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/values-v31/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/device_admin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/app/src/main/res/xml/device_admin.xml -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/crowdin.yml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zacharee/RootActivityLauncher/HEAD/settings.gradle.kts --------------------------------------------------------------------------------