06c8de02b5
Activity, Service, BroadcastReceiver #KT-17389 Fixed
15 lines
338 B
Kotlin
Vendored
15 lines
338 B
Kotlin
Vendored
// INTENTION_CLASS: org.jetbrains.kotlin.android.intention.AddServiceToManifest
|
|
// NOT_AVAILABLE
|
|
package com.myapp
|
|
|
|
import android.app.Service
|
|
import android.content.Intent
|
|
import android.os.IBinder
|
|
|
|
|
|
class MyService : Service() {
|
|
override fun onBind(intent: Intent?): IBinder {
|
|
<caret>
|
|
TODO("not implemented")
|
|
}
|
|
} |