AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Android Startup Optimizer

skill-josephsanjaya-skills-android-startup-optimizer · by JosephSanjaya

Expert Android app startup performance optimization skill. Use when analyzing or improving Android app cold start, warm start, or hot start times. Applies to projects using Jetpack Compose, Hilt/Dagger, ContentProviders, ad SDKs, or any Android initialization bottlenecks. Triggers on phrases like "startup time", "app launch", "cold start", "slow startup", "initialization performance", "TTID", "TT…

No reviews yet
0 installs
37 views
0.0% view→install

Install

$ agentstack add skill-josephsanjaya-skills-android-startup-optimizer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-josephsanjaya-skills-android-startup-optimizer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Android Startup Optimizer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Android Startup Performance Optimizer

Follow this structured workflow to diagnose, measure, and optimize Android application startup performance. Prioritize asynchronous lazy initialization and platform-native telemetry.

Android Vitals Thresholds

| Type | Target | Impact | |------|--------|--------| | Cold Start | `.

  • Activity.onCreate(): Audit complex layout inflation, synchronous database/file access, heavy initial composition, or bitmap decoding on the main thread.

Implementation Patterns

// BAD: blocking Application.onCreate()
class MyApp : Application() {
    override fun onCreate() {
        super.onCreate()
        Firebase.initialize(this)
        MobileAds.initialize(this) // blocks main thread
        val config = File(filesDir, "config.json").readText() // disk I/O on main thread
    }
}

// GOOD: async + lazy application initialization
class MyApp : Application() {
    val container: AppContainer by lazy { AppContainerImpl(this) }
    private val applicationScope = CoroutineScope(SupervisorJob() + Dispatchers.Default)

    override fun onCreate() {
        super.onCreate()
        applicationScope.launch {
            Firebase.initialize(this@MyApp)
            MobileAds.initialize(this@MyApp)
        }
    }
}

// GOOD: Lazy Hilt injection in ViewModel
@HiltViewModel
class MainViewModel @Inject constructor(
    private val userRepository: UserRepository,           // eager — needed immediately
    private val analyticsTracker: Lazy, // lazy — deferred instantiation
) : ViewModel()

// GOOD: App Startup library initializer
class AdMobInitializer : Initializer {
    override fun create(context: Context) {
        Executors.newSingleThreadExecutor().execute { MobileAds.initialize(context) }
    }
    override fun dependencies() = emptyList>>()
}

Success Metrics

| Metric | Target | Tool | |--------|--------|------| | Cold Start p50 |

  • Never recommend using lifecycleScope inside Application.onCreate(). You should recommend a custom CoroutineScope(SupervisorJob() + Dispatchers.Default) instead.
  • For Android 15+, you must recommend the ApplicationStartInfo API for telemetry and the ProfilingManager API for system-triggered field traces.
  • For Android 16+, you should recommend getStartComponent() on ApplicationStartInfo for component-specific optimizations.
  • You must only wrap Hilt/Dagger dependencies in Lazy if they are not immediately needed.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.