Refactoring: rename android-compiler-plugin to android-extensions-compiler
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/item_detail_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".ItemDetailActivity"
|
||||
tools:ignore="MergeRootFrame" >
|
||||
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Enter your password" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/password"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:ems="10"
|
||||
android:inputType="textPassword" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/login"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="Sign in" />
|
||||
|
||||
</FrameLayout>
|
||||
Vendored
+33
@@ -0,0 +1,33 @@
|
||||
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.item_detail_container: android.widget.FrameLayout!
|
||||
public val android.app.Fragment.item_detail_container: android.widget.FrameLayout!
|
||||
public val android.app.Activity.login: android.widget.Button!
|
||||
public val android.app.Fragment.login: android.widget.Button!
|
||||
public val android.app.Activity.password: android.widget.EditText!
|
||||
public val android.app.Fragment.password: android.widget.EditText!
|
||||
public val android.app.Activity.textView1: android.widget.TextView!
|
||||
public val android.app.Fragment.textView1: android.widget.TextView!
|
||||
|
||||
|
||||
kotlinx.android.synthetic.main.test.view
|
||||
|
||||
public val android.view.View.item_detail_container: android.widget.FrameLayout!
|
||||
public val android.view.View.login: android.widget.Button!
|
||||
public val android.view.View.password: android.widget.EditText!
|
||||
public val android.view.View.textView1: android.widget.TextView!
|
||||
Reference in New Issue
Block a user