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