aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/StickyListHeaders/sample/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/StickyListHeaders/sample/AndroidManifest.xml')
-rw-r--r--libraries/StickyListHeaders/sample/AndroidManifest.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/libraries/StickyListHeaders/sample/AndroidManifest.xml b/libraries/StickyListHeaders/sample/AndroidManifest.xml
new file mode 100644
index 000000000..4bf61a441
--- /dev/null
+++ b/libraries/StickyListHeaders/sample/AndroidManifest.xml
@@ -0,0 +1,27 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="se.emilsjolander.stickylistheaders"
+ android:versionCode="2"
+ android:versionName="2.0">
+
+ <uses-sdk
+ android:minSdkVersion="7"
+ android:targetSdkVersion="18" />
+
+ <application
+ android:allowBackup="true"
+ android:icon="@drawable/ic_launcher"
+ android:label="@string/app_name"
+ android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
+ android:supportsRtl="true">
+ <activity
+ android:name=".TestActivity"
+ 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> \ No newline at end of file