aboutsummaryrefslogtreecommitdiff
path: root/testapps/testProjectTest/lib/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'testapps/testProjectTest/lib/AndroidManifest.xml')
-rw-r--r--testapps/testProjectTest/lib/AndroidManifest.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/testapps/testProjectTest/lib/AndroidManifest.xml b/testapps/testProjectTest/lib/AndroidManifest.xml
new file mode 100644
index 000000000..b8bc11cab
--- /dev/null
+++ b/testapps/testProjectTest/lib/AndroidManifest.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.testprojecttest.lib"
+ android:versionCode="1"
+ android:versionName="1.0" >
+
+ <uses-sdk android:minSdkVersion="15" />
+
+ <application>
+ <activity
+ android:name="com.android.tests.testprojecttest.lib.LibActivity"
+ 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