Fix Android Extensions tests (descriptors)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" >
|
||||
|
||||
<Button
|
||||
android:id="@+id/button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/button2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</FrameLayout>
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" >
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/button3"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
|
||||
</FrameLayout>
|
||||
+47
@@ -0,0 +1,47 @@
|
||||
kotlinx
|
||||
|
||||
|
||||
kotlinx.android
|
||||
|
||||
|
||||
kotlinx.android.synthetic
|
||||
|
||||
public fun android.app.Activity.clearFindViewByIdCache(): kotlin.Unit
|
||||
public fun android.app.Fragment.clearFindViewByIdCache(): kotlin.Unit
|
||||
|
||||
|
||||
kotlinx.android.synthetic.main
|
||||
|
||||
|
||||
kotlinx.android.synthetic.main.test
|
||||
|
||||
public val android.app.Activity.button: android.view.View!
|
||||
public val android.app.Fragment.button: android.view.View!
|
||||
public val android.app.Activity.button2: android.widget.Button!
|
||||
public val android.app.Fragment.button2: android.widget.Button!
|
||||
public val android.app.Activity.button3: android.widget.Button!
|
||||
public val android.app.Fragment.button3: android.widget.Button!
|
||||
|
||||
|
||||
kotlinx.android.synthetic.main.test.view
|
||||
|
||||
public val android.view.View.button: android.view.View!
|
||||
public val android.view.View.button2: android.widget.Button!
|
||||
public val android.view.View.button3: android.widget.Button!
|
||||
|
||||
|
||||
kotlinx.android.synthetic.test
|
||||
|
||||
public val android.app.Activity.button: android.view.View!
|
||||
public val android.app.Fragment.button: android.view.View!
|
||||
public val android.app.Activity.button2: android.widget.Button!
|
||||
public val android.app.Fragment.button2: android.widget.Button!
|
||||
public val android.app.Activity.button3: android.widget.Button!
|
||||
public val android.app.Fragment.button3: android.widget.Button!
|
||||
|
||||
|
||||
kotlinx.android.synthetic.test.view
|
||||
|
||||
public val android.view.View.button: android.view.View!
|
||||
public val android.view.View.button2: android.widget.Button!
|
||||
public val android.view.View.button3: android.widget.Button!
|
||||
Reference in New Issue
Block a user