aboutsummaryrefslogtreecommitdiff
path: root/testapps/libsTest/app/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/libsTest/app/AndroidManifest.xml')
-rw-r--r--testapps/libsTest/app/AndroidManifest.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/testapps/libsTest/app/AndroidManifest.xml b/testapps/libsTest/app/AndroidManifest.xml
new file mode 100644
index 000000000..74f0ff2a1
--- /dev/null
+++ b/testapps/libsTest/app/AndroidManifest.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.libstest.app"
+ android:versionCode="1"
+ android:versionName="1.0" xmlns:tools="http://schemas.android.com/tools">
+
+ <uses-sdk
+ android:minSdkVersion="15"
+ tools:ignore="UsesMinSdkAttributes" />
+
+ <application
+ android:icon="@drawable/icon"
+ android:label="@string/app_name" >
+ <activity
+ android:name="com.android.tests.libstest.app.MainActivity"
+ 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