Refactoring: rename android-compiler-plugin to android-extensions-compiler

This commit is contained in:
Natalia Ukhorskaya
2016-03-11 15:59:29 +03:00
parent 93161be199
commit 7e6fa8ef17
159 changed files with 84 additions and 84 deletions
@@ -0,0 +1,14 @@
package test
import android.app.Activity
import kotlinx.android.synthetic.main.layout.*
fun Activity.a() {
val x = login
val y = this.login
}
// 2 GETSTATIC test/R\$id\.login
// 2 INVOKEVIRTUAL android/app/Activity\.findViewById
// 2 CHECKCAST android/widget/Button
// 0 _\$_findCachedViewById
@@ -0,0 +1,17 @@
<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" >
<Button
android:id="@+id/login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Sign in" />
</FrameLayout>