From f2b8cdca35174342b2a2316435739b42551084e5 Mon Sep 17 00:00:00 2001 From: hmkcode Date: Sun, 6 Jul 2014 23:11:58 +0300 Subject: [PATCH] l preview --- android-L-preview/AndroidManifest.xml | 27 +++++++++++++++++++ android-L-preview/proguard-project.txt | 20 ++++++++++++++ .../res/layout/activity_main.xml | 12 +++++++++ android-L-preview/res/values/strings.xml | 8 ++++++ android-L-preview/res/values/styles.xml | 4 +++ .../com/hmkcode/android/L/MainActivity.java | 14 ++++++++++ 6 files changed, 85 insertions(+) create mode 100644 android-L-preview/AndroidManifest.xml create mode 100644 android-L-preview/proguard-project.txt create mode 100644 android-L-preview/res/layout/activity_main.xml create mode 100644 android-L-preview/res/values/strings.xml create mode 100644 android-L-preview/res/values/styles.xml create mode 100644 android-L-preview/src/com/hmkcode/android/L/MainActivity.java 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); + } +}