aboutsummaryrefslogtreecommitdiff
path: root/testapps/jarCheckTests2/lib1/AndroidManifest.xml
diff options
context:
space:
mode:
authorBob Badour <bbadour@google.com>2020-05-06 14:17:12 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-05-06 14:17:12 +0000
commitfc7cda06f54946e3a03ea008c1ba086d90aeef84 (patch)
treefd845444b59dfc72656b7781596e0b1a0662c4c7 /testapps/jarCheckTests2/lib1/AndroidManifest.xml
parent1aa104fb55f1b87494e4e2bc38e23416f486adfd (diff)
parent512ba8f80c0a2422f9e58a1401cb142db190a56c (diff)
downloadsdk-fc7cda06f54946e3a03ea008c1ba086d90aeef84.tar.gz
Merge "Revert "Remove unused project.""
Diffstat (limited to 'testapps/jarCheckTests2/lib1/AndroidManifest.xml')
-rw-r--r--testapps/jarCheckTests2/lib1/AndroidManifest.xml15
1 files changed, 15 insertions, 0 deletions
diff --git a/testapps/jarCheckTests2/lib1/AndroidManifest.xml b/testapps/jarCheckTests2/lib1/AndroidManifest.xml
new file mode 100644
index 000000000..a634bdb74
--- /dev/null
+++ b/testapps/jarCheckTests2/lib1/AndroidManifest.xml
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.android.tests.libwithsupport"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <application android:label="@string/app_name">
+ <activity android:name=".MyActivity"
+ 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>