├── AndroidManifest.xml ├── README ├── libs └── android-support-v4.jar ├── res ├── drawable-hdpi │ ├── codeversed_logo.png │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ ├── main.xml │ └── notification_custom_remote.xml └── values │ └── strings.xml └── src └── com └── codeversed └── example └── Notifications ├── MainActivity.java └── ResultActivity.java /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | This file was created by IntelliJ IDEA 12.1.4 for binding GitHub repository -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeversed/notifications/c28f65a9b98d8c20a8636e0514ee895be933c9fd/libs/android-support-v4.jar -------------------------------------------------------------------------------- /res/drawable-hdpi/codeversed_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeversed/notifications/c28f65a9b98d8c20a8636e0514ee895be933c9fd/res/drawable-hdpi/codeversed_logo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeversed/notifications/c28f65a9b98d8c20a8636e0514ee895be933c9fd/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeversed/notifications/c28f65a9b98d8c20a8636e0514ee895be933c9fd/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeversed/notifications/c28f65a9b98d8c20a8636e0514ee895be933c9fd/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeversed/notifications/c28f65a9b98d8c20a8636e0514ee895be933c9fd/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 |