All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.app.IntentService.kt Maven / Gradle / Ivy

Go to download

Exercise is an annotation processor for Kotlin Android projects. Exercise makes it possible to pass intent extras easily and correctly.

There is a newer version: 0.12.0
Show newest version
package android.app

import android.content.Intent

@Suppress("UNUSED_PARAMETER") // This is a stub
abstract class IntentService(name: String) : Service() {
    abstract fun onHandleIntent(intent: Intent?): Unit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy