Minor: fix failing CliTestGenerated#testPluginSimple test

Add missing Android Dialog stub cause Android Extensions plugin now generates the synthetic property for Dialog.
This commit is contained in:
Yan Zhulanow
2017-03-27 16:15:02 +03:00
committed by Yan Zhulanow
parent 8ec70f44dc
commit 228b3c56a3
+5 -1
View File
@@ -6,4 +6,8 @@ public open class Activity {
public open class Fragment {
public open fun getView(): android.view.View = null!!
}
}
open class Dialog {
open fun findViewById(id: Int): android.view.View? = null
}