mobile-security

Installation
SKILL.md

Mobile Security Patterns

Security best practices for Android.

Secure Storage

EncryptedSharedPreferences

// Create encrypted preferences
private fun createSecurePrefs(context: Context): SharedPreferences {
    val masterKey = MasterKey.Builder(context)
        .setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
        .build()
Installs
16
GitHub Stars
53
First Seen
Feb 20, 2026
mobile-security — ahmed3elshaer/everything-claude-code-mobile