summaryrefslogtreecommitdiff
path: root/samples/styled/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'samples/styled/AndroidManifest.xml')
-rw-r--r--samples/styled/AndroidManifest.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/samples/styled/AndroidManifest.xml b/samples/styled/AndroidManifest.xml
new file mode 100644
index 0000000..11a56df
--- /dev/null
+++ b/samples/styled/AndroidManifest.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="80" android:versionName="4.1.0" package="com.actionbarsherlock.sample.styled">
+
+ <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15"/>
+
+ <uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
+
+ <application android:icon="@drawable/icon" android:label="@string/application_name">
+
+ <activity android:label="@string/activity_name" android:logo="@drawable/ad_logo" android:name=".MainActivity" android:theme="@style/Theme.AndroidDevelopers">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
+
+ </application>
+</manifest>