feat: v1.1.0 advanced privacy and security suite#2
Merged
Conversation
Implements the v1.1.0 feature set on top of the existing architecture (no package or DI rewrite): - Hidden vault: KeyStore-backed AES-256-GCM streaming encryption with import/export/secure-delete - Scheduled locking with an overnight-aware evaluator and exact-alarm compatibility - Intruder detection: silent front-camera capture, encrypted on-device only (no off-device upload) - Location and trusted Wi-Fi rules; notification privacy via a listener service - Usage statistics with a Compose chart; lock profiles and child (whitelist) mode - Encrypted backup/restore (PBKDF2 + AES-256-GCM); Quick Settings tile, widget, shake-to-lock - Security hardening: brute-force cooldown, scrambled keypad, wrong-PIN shake, configurable PIN length Adds unit tests (brute-force tiers, schedule evaluator, geofence, profile logic, backup round-trip) and updates README, CHANGELOG, RELEASE_NOTES, and the website changelog/updates/features pages. Note: marked Upcoming; not yet build-verified in CI, and the schedule/location/profile engines are not yet wired into the live lock decision.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Introduces the v1.1.0 advanced privacy & security suite, built on top of the existing architecture (no package rename, no Hilt/Room/clean-architecture rewrite — features adapt to the current SharedPreferences + activity-overlay design and add no new dependencies).
What's included
New features
core/security/VaultCipher.kt,features/vault/*).core/schedule/*).features/intruder/*).core/location/*,features/location/*).features/notifications/*).features/stats/*).features/profiles/*).features/backup/*).features/quicktile/*,features/widget/*,features/shake/*).Security hardening
Docs & website
README.md,CHANGELOG.md,RELEASE_NOTES.md.web-app/changelog.html,web-app/updates.html,web-app/features.html(marked Upcoming).Tests
Added unit tests for the pure logic: brute-force tiers, schedule evaluator (incl. overnight wrap), geofence math, profile lock decision, and backup encrypt/decrypt round-trip + wrong-password rejection.
Reviewer notes / not-yet-done
./gradlew :app:testDebugUnitTest :app:assembleDebugin CI.CAMERA, location, Wi-Fi state) and components (notification listener, QS tile, widget) increase Play review surface — worth a policy pass before release.