mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
Add missing Android Dialog stub cause Android Extensions plugin now generates the synthetic property for Dialog.
14 lines
327 B
Kotlin
Vendored
14 lines
327 B
Kotlin
Vendored
package android.app
|
|
|
|
public open class Activity {
|
|
public open fun findViewById(@Suppress("UNUSED_PARAMETER") id: Int): android.view.View = null!!
|
|
}
|
|
|
|
public open class Fragment {
|
|
public open fun getView(): android.view.View = null!!
|
|
}
|
|
|
|
open class Dialog {
|
|
open fun findViewById(id: Int): android.view.View? = null
|
|
}
|