├── .circleci └── config.yml ├── .gitignore ├── .idea ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── io │ │ └── github │ │ └── kobakei │ │ └── androidnotificationshowcase │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── io │ │ │ └── github │ │ │ └── kobakei │ │ │ └── androidnotificationshowcase │ │ │ ├── MainActivity.kt │ │ │ ├── MyBroadcastReceiver.kt │ │ │ ├── NotificationUtility.kt │ │ │ ├── SampleForegroundService.kt │ │ │ └── SampleForegroundService2.kt │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_action_close.png │ │ ├── ic_action_done.png │ │ ├── ic_action_reply.png │ │ └── ic_notification.png │ │ ├── drawable-mdpi │ │ ├── ic_action_close.png │ │ ├── ic_action_done.png │ │ ├── ic_action_reply.png │ │ └── ic_notification.png │ │ ├── drawable-nodpi │ │ └── dummy.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ ├── ic_action_close.png │ │ ├── ic_action_done.png │ │ ├── ic_action_reply.png │ │ └── ic_notification.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_close.png │ │ ├── ic_action_done.png │ │ ├── ic_action_reply.png │ │ └── ic_notification.png │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── custom_layout.xml │ │ └── main_layout.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 │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── io │ └── github │ └── kobakei │ └── androidnotificationshowcase │ ├── ExampleUnitTest.kt │ └── NotificationUtilityUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/io/github/kobakei/androidnotificationshowcase/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/androidTest/java/io/github/kobakei/androidnotificationshowcase/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/io/github/kobakei/androidnotificationshowcase/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/java/io/github/kobakei/androidnotificationshowcase/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/kobakei/androidnotificationshowcase/MyBroadcastReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/java/io/github/kobakei/androidnotificationshowcase/MyBroadcastReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/kobakei/androidnotificationshowcase/NotificationUtility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/java/io/github/kobakei/androidnotificationshowcase/NotificationUtility.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/kobakei/androidnotificationshowcase/SampleForegroundService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/java/io/github/kobakei/androidnotificationshowcase/SampleForegroundService.kt -------------------------------------------------------------------------------- /app/src/main/java/io/github/kobakei/androidnotificationshowcase/SampleForegroundService2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/java/io/github/kobakei/androidnotificationshowcase/SampleForegroundService2.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-hdpi/ic_action_close.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-hdpi/ic_action_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-hdpi/ic_action_reply.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-mdpi/ic_action_close.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-mdpi/ic_action_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-mdpi/ic_action_reply.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-nodpi/dummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-nodpi/dummy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xhdpi/ic_action_close.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xhdpi/ic_action_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xhdpi/ic_action_reply.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_close.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_done.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_action_reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xxhdpi/ic_action_reply.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/layout/custom_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/layout/main_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/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/kobakei/AndroidNotificationShowcase/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/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/io/github/kobakei/androidnotificationshowcase/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/test/java/io/github/kobakei/androidnotificationshowcase/ExampleUnitTest.kt -------------------------------------------------------------------------------- /app/src/test/java/io/github/kobakei/androidnotificationshowcase/NotificationUtilityUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/app/src/test/java/io/github/kobakei/androidnotificationshowcase/NotificationUtilityUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kobakei/AndroidNotificationShowcase/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------