├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── request_notify_icon_adaption.yml └── workflows │ ├── commit_ci.yml │ └── pull_request_ci.yml ├── .gitignore ├── .idea ├── icon.png ├── inspectionProfiles │ └── Project_Default.xml ├── ktlint-plugin.xml ├── ktlint.xml ├── migrations.xml ├── runConfigurations.xml └── vcs.xml ├── .secret └── universal.p12 ├── LICENSE ├── PRIVACY.md ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── fankes │ │ └── coloros │ │ └── notify │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── com │ │ │ └── fankes │ │ │ └── coloros │ │ │ └── notify │ │ │ ├── application │ │ │ └── CNNApplication.kt │ │ │ ├── bean │ │ │ └── IconDataBean.kt │ │ │ ├── const │ │ │ └── ConstFactory.kt │ │ │ ├── data │ │ │ ├── ConfigData.kt │ │ │ └── factory │ │ │ │ ├── CompoundButtonFactory.kt │ │ │ │ └── SeekBarFactory.kt │ │ │ ├── hook │ │ │ ├── HookEntry.kt │ │ │ └── entity │ │ │ │ ├── FrameworkHooker.kt │ │ │ │ └── SystemUIHooker.kt │ │ │ ├── param │ │ │ ├── IconPackParams.kt │ │ │ └── factory │ │ │ │ └── DataFactory.kt │ │ │ ├── service │ │ │ └── QuickStartTileService.kt │ │ │ ├── ui │ │ │ ├── activity │ │ │ │ ├── ConfigureActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── auto │ │ │ │ │ └── NotifyIconRuleUpdateActivity.kt │ │ │ │ └── base │ │ │ │ │ └── BaseActivity.kt │ │ │ └── widget │ │ │ │ └── MaterialSwitch.kt │ │ │ ├── utils │ │ │ ├── factory │ │ │ │ ├── BackPressedEventFactory.kt │ │ │ │ ├── BaseAdapterFactory.kt │ │ │ │ ├── DialogBuilderFactory.kt │ │ │ │ ├── ExceptionFactory.kt │ │ │ │ └── FunctionFactory.kt │ │ │ └── tool │ │ │ │ ├── ActivationPromptTool.kt │ │ │ │ ├── BitmapCompatTool.kt │ │ │ │ ├── GithubReleaseTool.kt │ │ │ │ ├── I18nWarnTool.kt │ │ │ │ ├── IconAdaptationTool.kt │ │ │ │ ├── IconRuleManagerTool.kt │ │ │ │ └── SystemUITool.kt │ │ │ └── wrapper │ │ │ └── BuildConfigWrapper.kt │ └── res │ │ ├── drawable-night │ │ ├── bg_dark_round.xml │ │ └── bg_permotion_round.xml │ │ ├── drawable │ │ ├── bg_button_round.xml │ │ ├── bg_dark_round.xml │ │ ├── bg_green_round.xml │ │ ├── bg_orange_round.xml │ │ ├── bg_permotion_round.xml │ │ ├── bg_yellow_round.xml │ │ ├── ic_about.xml │ │ ├── ic_back.xml │ │ ├── ic_filter.xml │ │ ├── ic_function.xml │ │ ├── ic_github.xml │ │ ├── ic_home.xml │ │ ├── ic_info.xml │ │ ├── ic_message.xml │ │ ├── ic_modify.xml │ │ ├── ic_nf_icon_update.xml │ │ ├── ic_notify.xml │ │ ├── ic_notify_icon.xml │ │ ├── ic_notify_update.xml │ │ ├── ic_page_bottom.xml │ │ ├── ic_page_top.xml │ │ ├── ic_preference.xml │ │ ├── ic_restart.xml │ │ ├── ic_success.xml │ │ ├── ic_sync.xml │ │ ├── ic_system_clock.xml │ │ ├── ic_theme.xml │ │ ├── ic_unsupported.xml │ │ └── ic_warn.xml │ │ ├── layout │ │ ├── activity_config.xml │ │ ├── activity_main.xml │ │ ├── adapter_config.xml │ │ ├── dia_icon_filter.xml │ │ ├── dia_source_from.xml │ │ └── dia_source_from_string.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── bg_payment_code.jpg │ │ ├── ic_kavaref.png │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_round.png │ │ └── ic_yukihookapi.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── values-night │ │ ├── color.xml │ │ └── themes.xml │ │ └── values │ │ ├── array.xml │ │ ├── color.xml │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── fankes │ └── coloros │ └── notify │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img-src └── icon.png └── settings.gradle.kts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_notify_icon_adaption.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.github/ISSUE_TEMPLATE/request_notify_icon_adaption.yml -------------------------------------------------------------------------------- /.github/workflows/commit_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.github/workflows/commit_ci.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.github/workflows/pull_request_ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/ktlint-plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/ktlint-plugin.xml -------------------------------------------------------------------------------- /.idea/ktlint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/ktlint.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.secret/universal.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/.secret/universal.p12 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/fankes/coloros/notify/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/androidTest/java/com/fankes/coloros/notify/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/application/CNNApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/application/CNNApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/bean/IconDataBean.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/bean/IconDataBean.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/const/ConstFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/const/ConstFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/data/ConfigData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/data/ConfigData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/data/factory/CompoundButtonFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/data/factory/CompoundButtonFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/data/factory/SeekBarFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/data/factory/SeekBarFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/hook/HookEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/hook/HookEntry.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/hook/entity/FrameworkHooker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/hook/entity/FrameworkHooker.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/hook/entity/SystemUIHooker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/hook/entity/SystemUIHooker.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/param/IconPackParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/param/IconPackParams.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/param/factory/DataFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/param/factory/DataFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/service/QuickStartTileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/service/QuickStartTileService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/ui/activity/ConfigureActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/ui/activity/ConfigureActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/ui/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/ui/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/ui/activity/auto/NotifyIconRuleUpdateActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/ui/activity/base/BaseActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/ui/activity/base/BaseActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/ui/widget/MaterialSwitch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/ui/widget/MaterialSwitch.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/factory/BackPressedEventFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/factory/BackPressedEventFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/factory/BaseAdapterFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/factory/BaseAdapterFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/factory/DialogBuilderFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/factory/DialogBuilderFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/factory/ExceptionFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/factory/ExceptionFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/factory/FunctionFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/factory/FunctionFactory.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/ActivationPromptTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/ActivationPromptTool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/BitmapCompatTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/BitmapCompatTool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/GithubReleaseTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/GithubReleaseTool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/I18nWarnTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/I18nWarnTool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/IconAdaptationTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/IconAdaptationTool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/IconRuleManagerTool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/IconRuleManagerTool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/utils/tool/SystemUITool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/utils/tool/SystemUITool.kt -------------------------------------------------------------------------------- /app/src/main/java/com/fankes/coloros/notify/wrapper/BuildConfigWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/java/com/fankes/coloros/notify/wrapper/BuildConfigWrapper.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_dark_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable-night/bg_dark_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-night/bg_permotion_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable-night/bg_permotion_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_button_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/bg_button_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_dark_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/bg_dark_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_green_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/bg_green_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_orange_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/bg_orange_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_permotion_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/bg_permotion_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_yellow_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/bg_yellow_round.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_about.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_about.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_back.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_function.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_function.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_home.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_info.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_message.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_modify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_modify.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_nf_icon_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_nf_icon_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notify.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_notify.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notify_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_notify_icon.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notify_update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_notify_update.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_page_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_page_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_page_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_page_top.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_preference.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_restart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_restart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_success.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_system_clock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_system_clock.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_theme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_theme.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_unsupported.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_unsupported.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_warn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/drawable/ic_warn.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/layout/activity_config.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/adapter_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/layout/adapter_config.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dia_icon_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/layout/dia_icon_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dia_source_from.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/layout/dia_source_from.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dia_source_from_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/layout/dia_source_from_string.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/bg_payment_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxhdpi/bg_payment_code.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_kavaref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxhdpi/ic_kavaref.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_yukihookapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxhdpi/ic_yukihookapi.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/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/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values-night/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values-night/color.xml -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values/array.xml -------------------------------------------------------------------------------- /app/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values/color.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/fankes/coloros/notify/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/app/src/test/java/com/fankes/coloros/notify/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/gradlew.bat -------------------------------------------------------------------------------- /img-src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/img-src/icon.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fankes/ColorOSNotifyIcon/HEAD/settings.gradle.kts --------------------------------------------------------------------------------