aboutsummaryrefslogtreecommitdiffstats
path: root/manifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml
diff options
context:
space:
mode:
Diffstat (limited to 'manifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml')
-rwxr-xr-xmanifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/manifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml b/manifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml
index b052462..b86f74a 100755
--- a/manifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml
+++ b/manifmerger/tests/src/com/android/manifmerger/data/41_uses_feat_errors.xml
@@ -61,7 +61,9 @@
@lib1
-<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.lib1">
<!-- Error: android:name attribute is missing. -->
<uses-feature />
@@ -93,9 +95,7 @@
android:name="com.example.SomeFeature6_RequiredFalse"
android:required="false" />
- <application
- android:label="@string/lib_name1"
- android:name="com.example.Library1" >
+ <application android:label="@string/lib_name1" >
</application>
</manifest>
@@ -103,7 +103,9 @@
@lib2
-<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+<manifest
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.lib2">
<!-- Overrides 3, changing it from required=false to true -->
<uses-feature
@@ -119,9 +121,7 @@
<uses-feature
android:name="com.example.SomeFeature6_RequiredFalse" />
- <application
- android:label="@string/lib_name1"
- android:name="com.example.Library1" >
+ <application android:label="@string/lib_name2" >
</application>
</manifest>