├── .gitignore ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── markdown-navigator-enh.xml ├── markdown-navigator.xml ├── misc.xml ├── render.experimental.xml └── vcs.xml ├── README.md ├── VideoShot └── 20210407-180253-720x1560.mp4 ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── notification │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── notification │ │ │ ├── DirectReplyReceiver.kt │ │ │ ├── MainActivity.kt │ │ │ ├── Message.kt │ │ │ ├── NotificationMediaReceiver.kt │ │ │ ├── NotificationReceiver.kt │ │ │ ├── Playable.kt │ │ │ └── Track.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_baseline_message_24.xml │ │ ├── ic_baseline_music_note_24.xml │ │ ├── ic_baseline_notifications_active_24.xml │ │ ├── ic_dislike.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_like.xml │ │ ├── ic_next.xml │ │ ├── ic_pause.xml │ │ ├── ic_play.xml │ │ ├── ic_previous.xml │ │ ├── ic_reply.xml │ │ ├── push_notifications.png │ │ ├── t1.jpg │ │ ├── t2.jpg │ │ ├── t3.jpg │ │ └── t4.jpg │ │ ├── layout │ │ └── activity_main.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 │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── example │ └── notification │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Notification -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator-enh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/markdown-navigator-enh.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/render.experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/render.experimental.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/README.md -------------------------------------------------------------------------------- /VideoShot/20210407-180253-720x1560.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/VideoShot/20210407-180253-720x1560.mp4 -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/example/notification/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/androidTest/java/com/example/notification/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/DirectReplyReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/DirectReplyReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/Message.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/NotificationMediaReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/NotificationMediaReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/NotificationReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/NotificationReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/Playable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/Playable.kt -------------------------------------------------------------------------------- /app/src/main/java/com/example/notification/Track.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/java/com/example/notification/Track.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_message_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_baseline_message_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_music_note_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_baseline_music_note_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_notifications_active_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_baseline_notifications_active_24.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_dislike.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_dislike.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_like.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_like.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_next.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_next.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_pause.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_pause.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_play.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_play.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_previous.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_previous.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/ic_reply.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/push_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/push_notifications.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/t1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/t1.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/t2.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/t3.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/t4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/drawable/t4.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/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/ahmedelbagory332/Notification/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/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/example/notification/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/app/src/test/java/com/example/notification/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedelbagory332/Notification/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | rootProject.name = "Notification" --------------------------------------------------------------------------------