├── settings.gradle ├── doc ├── 36410427.png ├── 76251555.png ├── bell.svg ├── android.svg ├── tox_icon.svg ├── tox_logo.svg ├── logo.077f6a13.svg ├── ic_launcher.svg ├── tox_notify.svg ├── tox_notify_filled3.svg ├── tox_notify_filled2.svg ├── tox_notify_filled4.svg ├── trifa_notify.svg └── trifa_notify_filled.svg ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── app ├── src │ ├── main │ │ ├── ic_launcher4-playstore.png │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── ic_launcher2.png │ │ │ │ ├── ic_launcher2_512_512.png │ │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher3.png │ │ │ │ ├── ic_launcher4.png │ │ │ │ ├── ic_launcher4_round.png │ │ │ │ └── ic_launcher4_foreground.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher3.png │ │ │ │ ├── ic_launcher4.png │ │ │ │ ├── ic_launcher4_round.png │ │ │ │ └── ic_launcher4_foreground.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher3.png │ │ │ │ ├── ic_launcher4.png │ │ │ │ ├── ic_launcher4_round.png │ │ │ │ └── ic_launcher4_foreground.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher3.png │ │ │ │ ├── ic_launcher4.png │ │ │ │ ├── ic_launcher4_round.png │ │ │ │ └── ic_launcher4_foreground.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher3.png │ │ │ │ ├── ic_launcher4.png │ │ │ │ ├── ic_launcher4_round.png │ │ │ │ └── ic_launcher4_foreground.png │ │ │ ├── values │ │ │ │ ├── styles.xml │ │ │ │ ├── ic_launcher4_background.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── arrays.xml │ │ │ │ ├── colors.xml │ │ │ │ └── strings.xml │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_stat_ic_notification.png │ │ │ │ └── baseline_settings_white_36.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_stat_ic_notification.png │ │ │ │ └── baseline_settings_white_36.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_stat_ic_notification.png │ │ │ │ └── baseline_settings_white_36.png │ │ │ ├── drawable-hdpi-v11 │ │ │ │ └── ic_stat_ic_notification.png │ │ │ ├── drawable-mdpi-v11 │ │ │ │ └── ic_stat_ic_notification.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_stat_ic_notification.png │ │ │ │ └── baseline_settings_white_36.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_stat_ic_notification.png │ │ │ │ └── baseline_settings_white_36.png │ │ │ ├── drawable-xhdpi-v11 │ │ │ │ └── ic_stat_ic_notification.png │ │ │ ├── drawable-xxhdpi-v11 │ │ │ │ └── ic_stat_ic_notification.png │ │ │ ├── drawable-xxxhdpi-v11 │ │ │ │ └── ic_stat_ic_notification.png │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher4.xml │ │ │ │ └── ic_launcher4_round.xml │ │ │ ├── layout │ │ │ │ ├── settings_activity.xml │ │ │ │ └── activity_main.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ │ └── strings.xml │ │ │ ├── xml │ │ │ │ └── root_preferences.xml │ │ │ ├── values-pt-rBR │ │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ │ └── strings.xml │ │ │ └── values-de │ │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── zoffcc │ │ │ └── applications │ │ │ └── pushmsg │ │ │ ├── SettingsActivity.java │ │ │ ├── UnifiedPushReceiver.java │ │ │ ├── MyFirebaseMessagingService.java │ │ │ └── MainActivity.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── google │ │ └── firebase │ │ └── quickstart │ │ └── pushmsg │ │ └── MainActivityEspressoTest.java ├── proguard-rules.pro ├── google-services.json__dummy └── build.gradle ├── PRIVACY_POLICY.md ├── .github ├── dependabot.yml └── workflows │ └── android.yml ├── gradle.properties ├── do_it.sh ├── README.md ├── gradlew.bat ├── gradlew └── LICENSE-GPLv3 /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /doc/36410427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/doc/36410427.png -------------------------------------------------------------------------------- /doc/76251555.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/doc/76251555.png -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | .idea/ 3 | *.iml 4 | build/ 5 | /local.properties 6 | .DS_Store 7 | /captures 8 | google-services.json 9 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher4-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/ic_launcher4-playstore.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/drawable/ic_launcher2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoff99/tox_push_msg_app/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher4.png -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 |