blob: fca0bf2d78e1ccc2158ae06a4a869ad99dc7f0c6 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.cts.instantapp"
android:versionCode="1"
android:versionName="1.0"
android:targetSandboxVersion="2">
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="30"/>
<application android:label="Sample Instant App for Testing">
<activity android:name=".HelloActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<category android:name="android.intent.category.DEFAULT" />
<data android:host="source.android.com" android:scheme="http"/>
<data android:host="source.android.com" android:scheme="https"/>
</intent-filter>
<meta-data android:name="default-url"
android:value="http://source.android.com" />
</activity>
</application>
</manifest>