blob: ef23160cc6d7f61b21c911384d630e07da1f924a [file] [log] [blame]
#
# Tests the option to extract prefixes.
# The default is for the manifest merger to expand all the class names
# it finds from their short form (e.g. when the package name is implied)
# to their FQCN.
#
@main
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.blankactivity5"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="16" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- The activity name will be expanded to its full FQCN by default. -->
<activity
android:name=".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>
@lib1
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.blankactivity5" >
<application>
<!-- The activity name will be expanded to its full FQCN by default. -->
<activity
android:name=".FooActivity"
android:label="@string/title_activity_foo" >
</activity>
</application>
</manifest>
@result
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.blankactivity5"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="16" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- The activity name will be expanded to its full FQCN by default. -->
<activity
android:name="com.example.blankactivity5.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>
<!-- The activity name will be expanded to its full FQCN by default. -->
<activity
android:name="com.example.blankactivity5.FooActivity"
android:label="@string/title_activity_foo" >
</activity>
</application>
<android:uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<android:uses-permission android:name="android.permission.READ_PHONE_STATE" />
<android:uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE" />
</manifest>
@errors