blob: 07c0ad9618dbb4cf798c431595de2677a240eb8d [file] [log] [blame]
#
# Test:
# - Verifies that <meta-data> elements from <application> are being merged.
#
@main
<!--
This is a canonical manifest that has some uses-permissions,
the usual uses-sdk and supports-screens, an app with an activity,
customer receiver & service and a widget.
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app1"
android:versionCode="100"
android:versionName="1.0.0">
<application
android:label="@string/app_name"
android:icon="@drawable/app_icon"
android:name="com.example.TheApp" >
<meta-data android:name="dup.value" android:value="ok" />
</application>
</manifest>
@lib1
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lib1">
<application>
<meta-data android:name="dup.value" android:value="ok" />
</application>
</manifest>
@result
<!--
This is a canonical manifest that has some uses-permissions,
the usual uses-sdk and supports-screens, an app with an activity,
customer receiver & service and a widget.
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.app1"
android:versionCode="100"
android:versionName="1.0.0">
<application
android:label="@string/app_name"
android:icon="@drawable/app_icon"
android:name="com.example.TheApp" >
<meta-data android:name="dup.value" android:value="ok" />
</application>
</manifest>
@errors
P [ManifestMergerTest0_main.xml:5, ManifestMergerTest1_lib1.xml:5] Skipping identical /manifest/application/meta-data[@name=dup.value] element.