├── LICENSE ├── README.md ├── app ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── firstrowria │ │ │ └── pushnotificationtester │ │ │ ├── activities │ │ │ └── MainActivity.kt │ │ │ ├── manager │ │ │ └── TextNotificationManager.kt │ │ │ ├── network │ │ │ └── PushNotificationTesterApi.kt │ │ │ └── services │ │ │ └── FCMMessagingService.kt │ └── res │ │ ├── drawable-xxhdpi │ │ ├── ic_check_white_36dp.png │ │ ├── ic_close_white_36dp.png │ │ └── ic_message_white_36dp.png │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── content_step1.xml │ │ ├── content_step2.xml │ │ ├── content_step3.xml │ │ ├── content_success.xml │ │ └── content_welcome.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-v26 │ │ └── strings.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── channel.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── firstrowria │ └── pushnotificationtester │ └── network │ └── SampleTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── privacy_policy_google_play.md └── settings.gradle /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/firstrowria/pushnotificationtester/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/java/com/firstrowria/pushnotificationtester/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/firstrowria/pushnotificationtester/manager/TextNotificationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/java/com/firstrowria/pushnotificationtester/manager/TextNotificationManager.kt -------------------------------------------------------------------------------- /app/src/main/java/com/firstrowria/pushnotificationtester/network/PushNotificationTesterApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/java/com/firstrowria/pushnotificationtester/network/PushNotificationTesterApi.kt -------------------------------------------------------------------------------- /app/src/main/java/com/firstrowria/pushnotificationtester/services/FCMMessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/java/com/firstrowria/pushnotificationtester/services/FCMMessagingService.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_check_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/drawable-xxhdpi/ic_check_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_close_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/drawable-xxhdpi/ic_close_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_message_white_36dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/drawable-xxhdpi/ic_message_white_36dp.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_step1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/layout/content_step1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_step2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/layout/content_step2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_step3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/layout/content_step3.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_success.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/layout/content_success.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/content_welcome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/layout/content_welcome.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-v26/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values-v26/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/channel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values/channel.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/firstrowria/pushnotificationtester/network/SampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/app/src/test/java/com/firstrowria/pushnotificationtester/network/SampleTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/gradlew.bat -------------------------------------------------------------------------------- /privacy_policy_google_play.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/PushNotificationTester_App/HEAD/privacy_policy_google_play.md -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------