diff --git a/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/AndroidManifest.xml b/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/AndroidManifest.xml
new file mode 100644
index 00000000000..580c474f5de
--- /dev/null
+++ b/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/AndroidManifest.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/res/layout/test.xml b/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/res/layout/test.xml
new file mode 100644
index 00000000000..f4736f6937b
--- /dev/null
+++ b/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/res/layout/test.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/test_LAYOUT.kt b/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/test_LAYOUT.kt
new file mode 100644
index 00000000000..fef31124451
--- /dev/null
+++ b/plugins/android-compiler-plugin/testData/android/converter/simple/supportSingleFile/test_LAYOUT.kt
@@ -0,0 +1,50 @@
+package kotlinx.android.synthetic.test
+
+import android.app.*
+import android.view.*
+import android.widget.*
+import android.webkit.*
+import android.inputmethodservice.*
+import android.opengl.*
+import android.appwidget.*
+import android.support.v4.app.*
+import android.support.v4.view.*
+import android.support.v4.widget.*
+import kotlin.internal.flexible.ft
+
+val android.app.Activity.item_detail_container: ft
+ get() = findViewById(0) as? FrameLayout
+
+val android.app.Fragment.item_detail_container: ft
+ get() = getView().findViewById(0) as? FrameLayout
+
+val android.support.v4.app.Fragment.item_detail_container: ft
+ get() = getView().findViewById(0) as? FrameLayout
+
+val android.app.Activity.textView1: ft
+ get() = findViewById(0) as? TextView
+
+val android.app.Fragment.textView1: ft
+ get() = getView().findViewById(0) as? TextView
+
+val android.support.v4.app.Fragment.textView1: ft
+ get() = getView().findViewById(0) as? TextView
+
+val android.app.Activity.password: ft
+ get() = findViewById(0) as? EditText
+
+val android.app.Fragment.password: ft
+ get() = getView().findViewById(0) as? EditText
+
+val android.support.v4.app.Fragment.password: ft
+ get() = getView().findViewById(0) as? EditText
+
+val android.app.Activity.login: ft