├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── google-services.json ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ │ └── nu │ │ │ └── milad │ │ │ └── motmaenbash │ │ │ ├── App.kt │ │ │ ├── consts │ │ │ ├── AppConstants.kt │ │ │ ├── NavRoutes.kt │ │ │ ├── Pages.kt │ │ │ └── PermissionType.kt │ │ │ ├── models │ │ │ ├── Alert.kt │ │ │ ├── AlertHistory.kt │ │ │ ├── App.kt │ │ │ ├── AppThreatType.kt │ │ │ ├── AppUpdate.kt │ │ │ ├── Guard.kt │ │ │ ├── InfoItem.kt │ │ │ ├── Link.kt │ │ │ ├── Stats.kt │ │ │ ├── Tip.kt │ │ │ ├── UpdateHistory.kt │ │ │ └── UrlThreatType.kt │ │ │ ├── receivers │ │ │ ├── AppInstallReceiver.kt │ │ │ ├── MonitoringStarterReceiver.kt │ │ │ └── SmsReceiver.kt │ │ │ ├── services │ │ │ ├── AlertOverlayService.kt │ │ │ ├── FirebaseMessagingService.kt │ │ │ ├── MonitoringService.kt │ │ │ ├── UrlGuardService.kt │ │ │ └── VerifiedBadgeOverlayService.kt │ │ │ ├── ui │ │ │ ├── activities │ │ │ │ ├── AlertHandlerActivity.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ └── PermissionTutorialActivity.kt │ │ │ ├── components │ │ │ │ ├── AppAlertDialog.kt │ │ │ │ ├── AppBar.kt │ │ │ │ ├── AppCard.kt │ │ │ │ ├── AppDialogs.kt │ │ │ │ ├── AppLogo.kt │ │ │ │ ├── Cards.kt │ │ │ │ ├── Divider.kt │ │ │ │ ├── ExpandablePermissionContent.kt │ │ │ │ ├── TickerText.kt │ │ │ │ └── intro │ │ │ │ │ ├── DeveloperCredit.kt │ │ │ │ │ ├── FinalStep.kt │ │ │ │ │ ├── IntroStep.kt │ │ │ │ │ ├── PermissionStep.kt │ │ │ │ │ └── TrustStep.kt │ │ │ ├── screens │ │ │ │ ├── AboutScreen.kt │ │ │ │ ├── AppScanScreen.kt │ │ │ │ ├── InfoListScreen.kt │ │ │ │ ├── IntroScreen.kt │ │ │ │ ├── MainScreen.kt │ │ │ │ ├── SettingsScreen.kt │ │ │ │ ├── UrlScanScreen.kt │ │ │ │ └── UserReportScreen.kt │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ ├── utils │ │ │ ├── AlertUtils.kt │ │ │ ├── AudioHelper.kt │ │ │ ├── BitmapUtils.kt │ │ │ ├── DataStoreExtensions.kt │ │ │ ├── DatabaseHelper.kt │ │ │ ├── DateUtils.kt │ │ │ ├── GuardUtils.kt │ │ │ ├── HashUtils.kt │ │ │ ├── NetworkUtils.kt │ │ │ ├── NotificationUtils.kt │ │ │ ├── NumberUtils.kt │ │ │ ├── PackageUtils.kt │ │ │ ├── PermissionAnalyzer.kt │ │ │ ├── PermissionManager.kt │ │ │ ├── PersianCalendar.kt │ │ │ ├── ScanUtils.kt │ │ │ ├── ServiceUtils.kt │ │ │ ├── SmsUtils.kt │ │ │ ├── TextUtils.kt │ │ │ ├── TextٰViewUtils.kt │ │ │ ├── UiUtils.java │ │ │ ├── UpdateManager.kt │ │ │ ├── UrlUtils.kt │ │ │ └── WebUtils.kt │ │ │ ├── viewmodels │ │ │ ├── AppScanViewModel.kt │ │ │ ├── BasePermissionViewModel.kt │ │ │ ├── IntroViewModel.kt │ │ │ ├── MainViewModel.kt │ │ │ ├── SettingsViewModel.kt │ │ │ └── UrlScanViewModel.kt │ │ │ ├── widgets │ │ │ └── VazirTextView.java │ │ │ └── workers │ │ │ └── DatabaseUpdateWorker.kt │ └── res │ │ ├── drawable-hdpi │ │ └── ic_notification.png │ │ ├── drawable-mdpi │ │ └── ic_notification.png │ │ ├── drawable-v24 │ │ └── ic_launcher_background.xml │ │ ├── drawable-xhdpi │ │ └── ic_notification.png │ │ ├── drawable-xxhdpi │ │ └── ic_notification.png │ │ ├── drawable-xxxhdpi │ │ └── ic_notification.png │ │ ├── drawable │ │ ├── close_button_bg.xml │ │ ├── floating_widget_bg.xml │ │ ├── ic_alert.xml │ │ ├── ic_check.xml │ │ ├── ic_checked_shield.xml │ │ ├── ic_close.xml │ │ ├── ic_help.xml │ │ ├── ic_report.xml │ │ ├── ic_scan.xml │ │ ├── ic_search.xml │ │ ├── logo.png │ │ └── logo_transparent.png │ │ ├── font │ │ ├── sahel.xml │ │ ├── sahel_black.ttf │ │ ├── sahel_bold.ttf │ │ ├── sahel_light.ttf │ │ ├── sahel_regular.ttf │ │ ├── sahel_semi_bold.ttf │ │ ├── vazirmatn.xml │ │ ├── vazirmatn_black.ttf │ │ ├── vazirmatn_bold.ttf │ │ ├── vazirmatn_extra_bold.ttf │ │ ├── vazirmatn_extra_light.ttf │ │ ├── vazirmatn_light.ttf │ │ ├── vazirmatn_medium.ttf │ │ ├── vazirmatn_regular.ttf │ │ ├── vazirmatn_semi_bold.ttf │ │ └── vazirmatn_thin.ttf │ │ ├── layout │ │ ├── overlay_alert.xml │ │ └── overlay_verification_badge.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_foreground.webp │ │ └── ic_launcher_round.webp │ │ ├── raw │ │ ├── ding1.mp3 │ │ ├── ding2.mp3 │ │ ├── ding3.mp3 │ │ ├── ding4.mp3 │ │ ├── ding5.mp3 │ │ ├── ding6.mp3 │ │ ├── malicious_data.json │ │ ├── tips.json │ │ └── trusted_data.json │ │ ├── values-v26 │ │ └── bool.xml │ │ ├── values │ │ ├── arrays.xml │ │ ├── bool.xml │ │ ├── changelog.xml │ │ ├── colors.xml │ │ ├── faq.xml │ │ ├── strings.xml │ │ └── styles.xml │ │ ├── xml-v25 │ │ └── shortcuts.xml │ │ └── xml │ │ ├── accessibility_service.xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── test │ └── java │ └── nu │ └── milad │ └── motmaenbash │ └── ExampleUnitTest.kt ├── 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/motmaenbash/motmaenbash-android/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/google-services.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/App.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/consts/AppConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/consts/AppConstants.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/consts/NavRoutes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/consts/NavRoutes.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/consts/Pages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/consts/Pages.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/consts/PermissionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/consts/PermissionType.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/Alert.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/Alert.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/AlertHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/AlertHistory.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/App.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/AppThreatType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/AppThreatType.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/AppUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/AppUpdate.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/Guard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/Guard.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/InfoItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/InfoItem.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/Link.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/Link.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/Stats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/Stats.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/Tip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/Tip.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/UpdateHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/UpdateHistory.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/models/UrlThreatType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/models/UrlThreatType.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/receivers/AppInstallReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/receivers/AppInstallReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/receivers/MonitoringStarterReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/receivers/MonitoringStarterReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/receivers/SmsReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/receivers/SmsReceiver.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/services/AlertOverlayService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/services/AlertOverlayService.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/services/FirebaseMessagingService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/services/FirebaseMessagingService.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/services/MonitoringService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/services/MonitoringService.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/services/UrlGuardService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/services/UrlGuardService.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/services/VerifiedBadgeOverlayService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/services/VerifiedBadgeOverlayService.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/activities/AlertHandlerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/activities/AlertHandlerActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/activities/PermissionTutorialActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/activities/PermissionTutorialActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/AppAlertDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/AppAlertDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/AppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/AppBar.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/AppCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/AppCard.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/AppDialogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/AppDialogs.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/AppLogo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/AppLogo.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/Cards.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/Cards.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/Divider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/Divider.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/ExpandablePermissionContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/ExpandablePermissionContent.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/TickerText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/TickerText.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/intro/DeveloperCredit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/intro/DeveloperCredit.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/intro/FinalStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/intro/FinalStep.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/intro/IntroStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/intro/IntroStep.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/intro/PermissionStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/intro/PermissionStep.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/components/intro/TrustStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/components/intro/TrustStep.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/AboutScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/AboutScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/AppScanScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/AppScanScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/InfoListScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/InfoListScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/IntroScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/IntroScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/MainScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/SettingsScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/UrlScanScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/UrlScanScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/screens/UserReportScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/screens/UserReportScreen.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/AlertUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/AlertUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/AudioHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/AudioHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/BitmapUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/BitmapUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/DataStoreExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/DataStoreExtensions.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/DatabaseHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/DatabaseHelper.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/DateUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/DateUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/GuardUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/GuardUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/HashUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/HashUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/NetworkUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/NetworkUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/NotificationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/NotificationUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/NumberUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/NumberUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/PackageUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/PackageUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/PermissionAnalyzer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/PermissionAnalyzer.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/PermissionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/PermissionManager.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/PersianCalendar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/PersianCalendar.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/ScanUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/ScanUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/ServiceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/ServiceUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/SmsUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/SmsUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/TextUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/TextUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/TextٰViewUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/TextٰViewUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/UiUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/UiUtils.java -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/UpdateManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/UpdateManager.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/UrlUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/UrlUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/utils/WebUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/utils/WebUtils.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/viewmodels/AppScanViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/viewmodels/AppScanViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/viewmodels/BasePermissionViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/viewmodels/BasePermissionViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/viewmodels/IntroViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/viewmodels/IntroViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/viewmodels/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/viewmodels/MainViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/viewmodels/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/viewmodels/SettingsViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/viewmodels/UrlScanViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/viewmodels/UrlScanViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/widgets/VazirTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/widgets/VazirTextView.java -------------------------------------------------------------------------------- /app/src/main/java/nu/milad/motmaenbash/workers/DatabaseUpdateWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/java/nu/milad/motmaenbash/workers/DatabaseUpdateWorker.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable-hdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable-mdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable-v24/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable-xhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable-xxhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable-xxxhdpi/ic_notification.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/close_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/close_button_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/floating_widget_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/floating_widget_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_alert.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_check.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_check.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_checked_shield.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_checked_shield.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_close.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_help.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_report.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_report.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_scan.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/ic_search.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/drawable/logo_transparent.png -------------------------------------------------------------------------------- /app/src/main/res/font/sahel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/sahel.xml -------------------------------------------------------------------------------- /app/src/main/res/font/sahel_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/sahel_black.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/sahel_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/sahel_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/sahel_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/sahel_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/sahel_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/sahel_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/sahel_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/sahel_semi_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn.xml -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_black.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_extra_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_extra_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_extra_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_extra_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_semi_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_semi_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/vazirmatn_thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/font/vazirmatn_thin.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/overlay_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/layout/overlay_alert.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/overlay_verification_badge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/layout/overlay_verification_badge.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/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/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/raw/ding1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/ding1.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/ding2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/ding2.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/ding3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/ding3.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/ding4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/ding4.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/ding5.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/ding5.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/ding6.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/ding6.mp3 -------------------------------------------------------------------------------- /app/src/main/res/raw/malicious_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/malicious_data.json -------------------------------------------------------------------------------- /app/src/main/res/raw/tips.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/tips.json -------------------------------------------------------------------------------- /app/src/main/res/raw/trusted_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/raw/trusted_data.json -------------------------------------------------------------------------------- /app/src/main/res/values-v26/bool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values-v26/bool.xml -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/bool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/bool.xml -------------------------------------------------------------------------------- /app/src/main/res/values/changelog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/changelog.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/faq.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/xml-v25/shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/xml-v25/shortcuts.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/accessibility_service.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/xml/accessibility_service.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/nu/milad/motmaenbash/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/app/src/test/java/nu/milad/motmaenbash/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/motmaenbash/motmaenbash-android/HEAD/settings.gradle.kts --------------------------------------------------------------------------------