Support Fragment in android-compiler-plugin

This commit is contained in:
Yan Zhulanow
2015-03-03 17:41:48 +03:00
parent d4184bd51d
commit da8369066b
68 changed files with 1160 additions and 25 deletions
@@ -0,0 +1,11 @@
package com.myapp
import android.app.Fragment
import java.io.File
import kotlinx.android.synthetic.layout.*
public class MyFragment : Fragment() {
override fun onResume() {}
val button = login<caret>
}