security: migrate Android secrets to EncryptedSharedPreferences#43
Open
juliosuas wants to merge 1 commit intoIntent-Lab:mainfrom
Open
security: migrate Android secrets to EncryptedSharedPreferences#43juliosuas wants to merge 1 commit intoIntent-Lab:mainfrom
juliosuas wants to merge 1 commit intoIntent-Lab:mainfrom
Conversation
Mirrors the iOS Keychain migration (PR Intent-Lab#41). API keys and tokens were stored in plain SharedPreferences (unencrypted XML on disk). Changes: - Add androidx.security:security-crypto dependency - SettingsManager now uses EncryptedSharedPreferences (AES256-GCM) for geminiAPIKey, openClawHookToken, and openClawGatewayToken - Non-sensitive settings (host, port, toggles) remain in plain prefs - One-time auto-migration from plain prefs to encrypted on first launch - resetAll() clears both encrypted and plain storage Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Problem
Android SettingsManager stores API keys and tokens in plain SharedPreferences (unencrypted XML on disk). Readable on rooted devices and in ADB backups.
Fix
Use EncryptedSharedPreferences (AES256-GCM) for secrets. Non-sensitive settings remain in plain SharedPreferences. Auto-migration on first launch.
Files Changed
settings/SettingsManager.kt— dual storage (encrypted + plain)app/build.gradle.kts— added security-crypto dependencygradle/libs.versions.toml— added version entryRelated
🤖 Generated with Claude Code