You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.2 KiB

<?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>