├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lionscribe │ │ └── open │ │ └── notificationchannelcompat │ │ └── example │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lionscribe │ │ │ └── open │ │ │ └── notificationchannelcompat │ │ │ └── example │ │ │ ├── MainActivity.java │ │ │ ├── SettingsActivity.java │ │ │ └── SettingsActivityFragment.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_notifications_active_black_24dp.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── activity_settings.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 │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ └── xml │ │ └── preferences.xml │ └── test │ └── java │ └── com │ └── lionscribe │ └── open │ └── notificationchannelcompat │ └── example │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── notificationchannelcompat ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lionscribe │ │ └── open │ │ └── notificationchannelcompat │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lionscribe │ │ │ └── open │ │ │ └── notificationchannelcompat │ │ │ ├── NotificationChannelCompat.java │ │ │ ├── NotificationChannelGroupCompat.java │ │ │ ├── NotificationChannelManagerHelper.java │ │ │ ├── NotificationChannelPreference.java │ │ │ └── ui │ │ │ ├── PreferencesChannelsActivity.java │ │ │ ├── PreferencesChannelsMainFragment.java │ │ │ ├── PreferencesChannelsSubFragment.java │ │ │ ├── PreferencesChannelsSystemFragment.java │ │ │ └── widgets │ │ │ ├── MasterCheckBoxPreference.java │ │ │ ├── PreferenceImageView.java │ │ │ ├── SoundTonePreference.java │ │ │ └── TwoTargetPreference.java │ └── res │ │ ├── drawable-anydpi │ │ ├── ic_arrow_right.xml │ │ ├── ic_error_outline.xml │ │ └── ic_info_disabled.xml │ │ ├── drawable-hdpi │ │ ├── ic_arrow_right.png │ │ ├── ic_error_outline.png │ │ └── ic_info_disabled.png │ │ ├── drawable-mdpi │ │ ├── ic_arrow_right.png │ │ ├── ic_error_outline.png │ │ └── ic_info_disabled.png │ │ ├── drawable-xhdpi │ │ ├── ic_arrow_right.png │ │ ├── ic_error_outline.png │ │ └── ic_info_disabled.png │ │ ├── drawable-xxhdpi │ │ ├── ic_arrow_right.png │ │ ├── ic_error_outline.png │ │ └── ic_info_disabled.png │ │ ├── drawable │ │ └── list_divider_dark.xml │ │ ├── layout │ │ ├── activity_preferences_channel.xml │ │ ├── preference_goto_target.xml │ │ ├── preference_two_target.xml │ │ ├── preference_two_target_divider.xml │ │ └── preference_widget_master_checkbox.xml │ │ ├── values-af │ │ └── strings.xml │ │ ├── values-am │ │ └── strings.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-b+sr+Latn │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bn │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-en-rAU │ │ └── strings.xml │ │ ├── values-en-rCA │ │ └── strings.xml │ │ ├── values-en-rGB │ │ └── strings.xml │ │ ├── values-en-rIN │ │ └── strings.xml │ │ ├── values-en-rXC │ │ └── strings.xml │ │ ├── values-es-rUS │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-eu │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr-rCA │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-gu │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-hy │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-is │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ka │ │ └── strings.xml │ │ ├── values-kk │ │ └── strings.xml │ │ ├── values-km │ │ └── strings.xml │ │ ├── values-kn │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-ky │ │ └── strings.xml │ │ ├── values-lo │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-mk │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-mn │ │ └── strings.xml │ │ ├── values-mr │ │ └── strings.xml │ │ ├── values-ms │ │ └── strings.xml │ │ ├── values-my │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-ne │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pa │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-si │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sq │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-sw │ │ └── strings.xml │ │ ├── values-ta │ │ └── strings.xml │ │ ├── values-te │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tl │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-ur │ │ └── strings.xml │ │ ├── values-uz │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-zu │ │ └── strings.xml │ │ └── values │ │ ├── arrays.xml │ │ ├── attrs.xml │ │ ├── dimens.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── lionscribe │ └── open │ └── notificationchannelcompat │ └── ExampleUnitTest.java ├── screenshots ├── screenshot_channel_all.png ├── screenshot_channel_single.png ├── screenshot_channel_single_small.png ├── screenshot_example_main.png └── screenshot_example_menu.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lionscribe/open/notificationchannelcompat/example/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/androidTest/java/com/lionscribe/open/notificationchannelcompat/example/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/lionscribe/open/notificationchannelcompat/example/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/java/com/lionscribe/open/notificationchannelcompat/example/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/lionscribe/open/notificationchannelcompat/example/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/java/com/lionscribe/open/notificationchannelcompat/example/SettingsActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/lionscribe/open/notificationchannelcompat/example/SettingsActivityFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/java/com/lionscribe/open/notificationchannelcompat/example/SettingsActivityFragment.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notifications_active_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/drawable/ic_notifications_active_black_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/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/lionscribe/notification-channel-compat/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/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/main/res/xml/preferences.xml -------------------------------------------------------------------------------- /app/src/test/java/com/lionscribe/open/notificationchannelcompat/example/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/app/src/test/java/com/lionscribe/open/notificationchannelcompat/example/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 -------------------------------------------------------------------------------- /notificationchannelcompat/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /notificationchannelcompat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/build.gradle -------------------------------------------------------------------------------- /notificationchannelcompat/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/proguard-rules.pro -------------------------------------------------------------------------------- /notificationchannelcompat/src/androidTest/java/com/lionscribe/open/notificationchannelcompat/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/androidTest/java/com/lionscribe/open/notificationchannelcompat/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelCompat.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelGroupCompat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelGroupCompat.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelManagerHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelManagerHelper.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/NotificationChannelPreference.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsActivity.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsMainFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsMainFragment.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsSubFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsSubFragment.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsSystemFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/PreferencesChannelsSystemFragment.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/MasterCheckBoxPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/MasterCheckBoxPreference.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/PreferenceImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/PreferenceImageView.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/SoundTonePreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/SoundTonePreference.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/TwoTargetPreference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/java/com/lionscribe/open/notificationchannelcompat/ui/widgets/TwoTargetPreference.java -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-anydpi/ic_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-anydpi/ic_arrow_right.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-anydpi/ic_error_outline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-anydpi/ic_error_outline.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-anydpi/ic_info_disabled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-anydpi/ic_info_disabled.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-hdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-hdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-hdpi/ic_error_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-hdpi/ic_error_outline.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-hdpi/ic_info_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-hdpi/ic_info_disabled.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-mdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-mdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-mdpi/ic_error_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-mdpi/ic_error_outline.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-mdpi/ic_info_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-mdpi/ic_info_disabled.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-xhdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-xhdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-xhdpi/ic_error_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-xhdpi/ic_error_outline.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-xhdpi/ic_info_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-xhdpi/ic_info_disabled.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-xxhdpi/ic_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-xxhdpi/ic_arrow_right.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-xxhdpi/ic_error_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-xxhdpi/ic_error_outline.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable-xxhdpi/ic_info_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable-xxhdpi/ic_info_disabled.png -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/drawable/list_divider_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/drawable/list_divider_dark.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/layout/activity_preferences_channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/layout/activity_preferences_channel.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/layout/preference_goto_target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/layout/preference_goto_target.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/layout/preference_two_target.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/layout/preference_two_target.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/layout/preference_two_target_divider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/layout/preference_two_target_divider.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/layout/preference_widget_master_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/layout/preference_widget_master_checkbox.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-af/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-am/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-b+sr+Latn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-b+sr+Latn/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-bn/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-en-rAU/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-en-rAU/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-en-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-en-rCA/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-en-rXC/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-en-rXC/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-eu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-eu/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-fa/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-fr-rCA/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-fr-rCA/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-gu/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-hy/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-is/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-is/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ka/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ka/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-kk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-kk/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-km/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-km/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-kn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-kn/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ky/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ky/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-lo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-lo/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-mk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-mk/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-mn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-mn/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-mr/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ms/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-my/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-my/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-nb/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ne/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ne/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-pa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-pa/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-si/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-si/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-sq/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-sq/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-sw/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ta/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-te/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-te/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-tl/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-ur/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-ur/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-uz/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-uz/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values-zu/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /notificationchannelcompat/src/test/java/com/lionscribe/open/notificationchannelcompat/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/notificationchannelcompat/src/test/java/com/lionscribe/open/notificationchannelcompat/ExampleUnitTest.java -------------------------------------------------------------------------------- /screenshots/screenshot_channel_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/screenshots/screenshot_channel_all.png -------------------------------------------------------------------------------- /screenshots/screenshot_channel_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/screenshots/screenshot_channel_single.png -------------------------------------------------------------------------------- /screenshots/screenshot_channel_single_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/screenshots/screenshot_channel_single_small.png -------------------------------------------------------------------------------- /screenshots/screenshot_example_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/screenshots/screenshot_example_main.png -------------------------------------------------------------------------------- /screenshots/screenshot_example_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lionscribe/notification-channel-compat/HEAD/screenshots/screenshot_example_menu.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':notificationchannelcompat' 2 | --------------------------------------------------------------------------------