Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements focused on user privacy, UI consistency, and feature enhancements for both Android and iOS platforms. The most notable changes include enforcing screen capture protection, updating Android SDK versions, refining theme-based UI elements, and adding a QR code scanner for SUI wallet address entry.
Privacy and Security Enhancements
MainActivitynow setsFLAG_SECUREto prevent screenshots and screen recording, ensuring sensitive content is protected. (android/app/src/main/kotlin/site/kanari/kanaripay/MainActivity.kt, android/app/src/main/kotlin/site/kanari/kanaripay/MainActivity.ktR3-R19)AppDelegatedetects screen capture and screenshots, overlaying the app with a privacy screen when needed to protect sensitive information. (ios/Runner/AppDelegate.swift, ios/Runner/AppDelegate.swiftR6-R86)Platform and Build Updates
compileSdkandtargetSdkare set to 36 inandroid/app/build.gradle.ktsto support newer Android features and attributes. [1] [2]UI Consistency and Theming
Theme.of(context).iconTheme.colorfor icons, falling back toprimaryColorto ensure icons match the app's theme. [1] [2] [3] [4] [5] [6]Feature Enhancements
lib/screenpage/SendSuiScreen.dart, [1] [2] [3] [4]Miscellaneous
lib/main.dart, lib/main.dartR13-R15).vscode/settings.json, .vscode/settings.jsonR1-R6)These changes collectively improve privacy, user experience, and maintainability across the app.