xref: /aosp_15_r20/cts/apps/CtsVerifierInstantApp/AndroidManifest.xml (revision b7c941bb3fa97aba169d73cee0bed2de8ac964bf)
1*b7c941bbSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*b7c941bbSAndroid Build Coastguard Worker
3*b7c941bbSAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4*b7c941bbSAndroid Build Coastguard Worker    package="com.android.cts.instantapp"
5*b7c941bbSAndroid Build Coastguard Worker    android:versionCode="1"
6*b7c941bbSAndroid Build Coastguard Worker    android:versionName="1.0"
7*b7c941bbSAndroid Build Coastguard Worker    android:targetSandboxVersion="2">
8*b7c941bbSAndroid Build Coastguard Worker    <uses-sdk android:minSdkVersion="26" android:targetSdkVersion="30"/>
9*b7c941bbSAndroid Build Coastguard Worker
10*b7c941bbSAndroid Build Coastguard Worker    <application android:label="Sample Instant App for Testing">
11*b7c941bbSAndroid Build Coastguard Worker        <activity android:name=".HelloActivity">
12*b7c941bbSAndroid Build Coastguard Worker            <intent-filter>
13*b7c941bbSAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
14*b7c941bbSAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
15*b7c941bbSAndroid Build Coastguard Worker            </intent-filter>
16*b7c941bbSAndroid Build Coastguard Worker            <intent-filter android:autoVerify="true">
17*b7c941bbSAndroid Build Coastguard Worker                <action android:name="android.intent.action.VIEW"/>
18*b7c941bbSAndroid Build Coastguard Worker                <category android:name="android.intent.category.BROWSABLE"/>
19*b7c941bbSAndroid Build Coastguard Worker                <category android:name="android.intent.category.DEFAULT" />
20*b7c941bbSAndroid Build Coastguard Worker                <data android:host="source.android.com" android:scheme="http"/>
21*b7c941bbSAndroid Build Coastguard Worker                <data android:host="source.android.com" android:scheme="https"/>
22*b7c941bbSAndroid Build Coastguard Worker            </intent-filter>
23*b7c941bbSAndroid Build Coastguard Worker            <meta-data android:name="default-url"
24*b7c941bbSAndroid Build Coastguard Worker              android:value="http://source.android.com" />
25*b7c941bbSAndroid Build Coastguard Worker        </activity>
26*b7c941bbSAndroid Build Coastguard Worker    </application>
27*b7c941bbSAndroid Build Coastguard Worker</manifest>
28