diff --git a/android-L-preview/AndroidManifest.xml b/android-L-preview/AndroidManifest.xml
new file mode 100644
index 0000000..08eafe5
--- /dev/null
+++ b/android-L-preview/AndroidManifest.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android-L-preview/proguard-project.txt b/android-L-preview/proguard-project.txt
new file mode 100644
index 0000000..f2fe155
--- /dev/null
+++ b/android-L-preview/proguard-project.txt
@@ -0,0 +1,20 @@
+# To enable ProGuard in your project, edit project.properties
+# to define the proguard.config property as described in that file.
+#
+# Add project specific ProGuard rules here.
+# By default, the flags in this file are appended to flags specified
+# in ${sdk.dir}/tools/proguard/proguard-android.txt
+# You can edit the include path and order by changing the ProGuard
+# include property in project.properties.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# Add any project specific keep options here:
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
diff --git a/android-L-preview/res/layout/activity_main.xml b/android-L-preview/res/layout/activity_main.xml
new file mode 100644
index 0000000..50fe8d0
--- /dev/null
+++ b/android-L-preview/res/layout/activity_main.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/android-L-preview/res/values/strings.xml b/android-L-preview/res/values/strings.xml
new file mode 100644
index 0000000..7d70ec0
--- /dev/null
+++ b/android-L-preview/res/values/strings.xml
@@ -0,0 +1,8 @@
+
+
+
+ L Preview
+ MainActivity
+ Hello world!
+
+
diff --git a/android-L-preview/res/values/styles.xml b/android-L-preview/res/values/styles.xml
new file mode 100644
index 0000000..1192db2
--- /dev/null
+++ b/android-L-preview/res/values/styles.xml
@@ -0,0 +1,4 @@
+
+
+
diff --git a/android-L-preview/src/com/hmkcode/android/L/MainActivity.java b/android-L-preview/src/com/hmkcode/android/L/MainActivity.java
new file mode 100644
index 0000000..95510ec
--- /dev/null
+++ b/android-L-preview/src/com/hmkcode/android/L/MainActivity.java
@@ -0,0 +1,14 @@
+package com.hmkcode.android.L;
+
+import android.app.Activity;
+import android.os.Bundle;
+
+
+public class MainActivity extends Activity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_main);
+ }
+}