aboutsummaryrefslogtreecommitdiffstats
path: root/example/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'example/AndroidManifest.xml')
-rw-r--r--example/AndroidManifest.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/example/AndroidManifest.xml b/example/AndroidManifest.xml
new file mode 100644
index 0000000..79aaf8e
--- /dev/null
+++ b/example/AndroidManifest.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.emojiconsample"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk
+ android:minSdkVersion="8"
+ android:targetSdkVersion="18" />
+
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme" >
+ <activity
+ android:name="com.example.emojiconsample.MainActivity"
+ android:windowSoftInputMode="stateHidden"
+ android:label="@string/app_name" >
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+
+</manifest>