├── .github └── FUNDING.yml ├── .gitignore ├── .idea ├── .gitignore ├── .name ├── AndroidProjectSystem.xml ├── compiler.xml ├── deploymentTargetSelector.xml ├── deviceManager.xml ├── gradle.xml ├── inspectionProfiles │ └── Project_Default.xml ├── migrations.xml ├── misc.xml ├── runConfigurations.xml ├── studiobot.xml └── vcs.xml ├── README.md ├── UI_EDITING_GUIDE.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro ├── release │ ├── app-release.apk │ ├── baselineProfiles │ │ ├── 0 │ │ │ └── app-release.dm │ │ └── 1 │ │ │ └── app-release.dm │ └── output-metadata.json └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hiddencyber │ │ └── notificationlistener │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hiddencyber │ │ │ └── notificationlistener │ │ │ ├── NotificationListenerApplication.kt │ │ │ ├── data │ │ │ ├── database │ │ │ │ ├── NotificationDatabase.kt │ │ │ │ ├── dao │ │ │ │ │ ├── NotificationLogDao.kt │ │ │ │ │ └── PendingNotificationDao.kt │ │ │ │ └── entity │ │ │ │ │ ├── NotificationLogEntity.kt │ │ │ │ │ └── PendingNotificationEntity.kt │ │ │ ├── model │ │ │ │ └── ApiModels.kt │ │ │ ├── network │ │ │ │ └── NotificationApiService.kt │ │ │ ├── preferences │ │ │ │ └── UserPreferencesRepository.kt │ │ │ ├── repository │ │ │ │ └── NotificationRepository.kt │ │ │ └── security │ │ │ │ └── EncryptedPreferencesManager.kt │ │ │ ├── di │ │ │ ├── DatabaseModule.kt │ │ │ ├── NetworkModule.kt │ │ │ └── WorkManagerModule.kt │ │ │ ├── receiver │ │ │ └── BootCompletedReceiver.kt │ │ │ ├── service │ │ │ ├── ForegroundService.kt │ │ │ └── NotificationCaptureService.kt │ │ │ ├── ui │ │ │ ├── MainActivity.kt │ │ │ ├── components │ │ │ │ ├── DebugUtilities.kt │ │ │ │ ├── LogsSection.kt │ │ │ │ ├── PermissionStatusCard.kt │ │ │ │ └── SettingsForm.kt │ │ │ ├── screens │ │ │ │ └── NotificationListenerScreen.kt │ │ │ ├── state │ │ │ │ └── NotificationListenerUiState.kt │ │ │ ├── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── viewmodel │ │ │ │ └── NotificationListenerViewModel.kt │ │ │ ├── utils │ │ │ ├── NetworkUtils.kt │ │ │ └── NotificationUtils.kt │ │ │ └── worker │ │ │ └── NotificationRetryWorker.kt │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ └── ic_notification.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_background.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_monochrome.png │ │ └── ic_launcher_round.png │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── com │ └── hiddencyber │ └── notificationlistener │ └── ExampleUnitTest.kt ├── backend ├── .env.example ├── .gitignore ├── CLOUDFLARE_DEPLOYMENT.md ├── Dockerfile ├── README.md ├── docker-compose.yml ├── package-lock.json ├── package.json ├── schema.sql ├── server.js ├── src │ └── worker.js ├── test-cloudflare.sh └── test.js ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Notification Listener -------------------------------------------------------------------------------- /.idea/AndroidProjectSystem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/AndroidProjectSystem.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetSelector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/deploymentTargetSelector.xml -------------------------------------------------------------------------------- /.idea/deviceManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/deviceManager.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/studiobot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/studiobot.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/README.md -------------------------------------------------------------------------------- /UI_EDITING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/UI_EDITING_GUIDE.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/baselineProfiles/0/app-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/release/baselineProfiles/0/app-release.dm -------------------------------------------------------------------------------- /app/release/baselineProfiles/1/app-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/release/baselineProfiles/1/app-release.dm -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hiddencyber/notificationlistener/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/androidTest/java/com/hiddencyber/notificationlistener/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/NotificationListenerApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/NotificationListenerApplication.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/database/NotificationDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/database/NotificationDatabase.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/database/dao/NotificationLogDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/database/dao/NotificationLogDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/database/dao/PendingNotificationDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/database/dao/PendingNotificationDao.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/database/entity/NotificationLogEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/database/entity/NotificationLogEntity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/database/entity/PendingNotificationEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/database/entity/PendingNotificationEntity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/model/ApiModels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/model/ApiModels.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/network/NotificationApiService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/network/NotificationApiService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/preferences/UserPreferencesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/preferences/UserPreferencesRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/repository/NotificationRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/repository/NotificationRepository.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/data/security/EncryptedPreferencesManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/data/security/EncryptedPreferencesManager.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/di/DatabaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/di/DatabaseModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/di/NetworkModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/di/NetworkModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/di/WorkManagerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/di/WorkManagerModule.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/receiver/BootCompletedReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/receiver/BootCompletedReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/service/ForegroundService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/service/ForegroundService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/service/NotificationCaptureService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/service/NotificationCaptureService.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/components/DebugUtilities.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/components/DebugUtilities.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/components/LogsSection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/components/LogsSection.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/components/PermissionStatusCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/components/PermissionStatusCard.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/components/SettingsForm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/components/SettingsForm.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/screens/NotificationListenerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/screens/NotificationListenerScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/state/NotificationListenerUiState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/state/NotificationListenerUiState.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/ui/viewmodel/NotificationListenerViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/ui/viewmodel/NotificationListenerViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/utils/NetworkUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/utils/NetworkUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/utils/NotificationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/utils/NotificationUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/com/hiddencyber/notificationlistener/worker/NotificationRetryWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/java/com/hiddencyber/notificationlistener/worker/NotificationRetryWorker.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/drawable/ic_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/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/Wimboro/NotificationListener/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/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/hiddencyber/notificationlistener/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/app/src/test/java/com/hiddencyber/notificationlistener/ExampleUnitTest.kt -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/CLOUDFLARE_DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/CLOUDFLARE_DEPLOYMENT.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/docker-compose.yml -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/schema.sql -------------------------------------------------------------------------------- /backend/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/server.js -------------------------------------------------------------------------------- /backend/src/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/src/worker.js -------------------------------------------------------------------------------- /backend/test-cloudflare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/test-cloudflare.sh -------------------------------------------------------------------------------- /backend/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/backend/test.js -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimboro/NotificationListener/HEAD/settings.gradle.kts --------------------------------------------------------------------------------