Switch jps android test to platform 26

This commit is contained in:
Ilya Chernikov
2017-11-30 15:16:37 +01:00
committed by Vyacheslav Gerasimov
parent 7120fe190a
commit febab82c7e
6 changed files with 8 additions and 8 deletions
@@ -4,5 +4,5 @@ import android.view.View
import android.content.Context
open class Activity: Context {
open fun findViewById(id: Int): View? = null
open fun <T : View> findViewById(id: Int): T? = null
}
@@ -3,5 +3,5 @@ package android.app
import android.view.View
open class Dialog {
open fun findViewById(id: Int): View? = null
open fun <T : View> findViewById(id: Int): T? = null
}
@@ -3,5 +3,5 @@ package android.view
import android.content.Context
open class View(ctx: Context) {
open fun findViewById(id: Int): View? = null
open fun <T : View> findViewById(id: Int): T? = null
}