From android-development-assistant
Unit testing, performance optimization, security implementation, Play Store deployment.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-2 --plugin pluginagentmarketplace-custom-plugin-androidThis skill uses the workspace's default tool permissions.
```kotlin
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
@Test
fun loadUser_updates_state() = runTest {
val user = User(1, "John")
val mockRepo = mockk<UserRepository>()
coEvery { mockRepo.getUser(1) } returns user
val viewModel = UserViewModel(mockRepo)
viewModel.loadUser(1)
assertEquals(user, viewModel.state.value)
}
// Encrypted storage
val prefs = EncryptedSharedPreferences.create(context, "secret",
MasterKey.Builder(context).build(), AES256_SIV, AES256_GCM)
// SSL pinning
CertificatePinner.Builder()
.add("api.example.com", "sha256/...").build()
./gradlew bundleRelease
# Upload to Google Play Console
# Monitor crashes and ratings
✅ Write comprehensive tests ✅ Profile regularly ✅ Implement security features ✅ Monitor production apps ✅ Use staged rollouts