06c8de02b5
Activity, Service, BroadcastReceiver #KT-17389 Fixed
15 lines
382 B
Kotlin
Vendored
15 lines
382 B
Kotlin
Vendored
// INTENTION_CLASS: org.jetbrains.kotlin.android.intention.AddBroadcastReceiverToManifest
|
|
// CHECK_MANIFEST
|
|
package com.myapp
|
|
|
|
import android.content.BroadcastReceiver
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
|
|
|
|
class Test {
|
|
class <caret>MyReceiver : BroadcastReceiver() {
|
|
override fun onReceive(context: Context?, intent: Intent?) {
|
|
}
|
|
}
|
|
} |