xref: /aosp_15_r20/frameworks/base/tests/graphics/RenderThreadTest/AndroidManifest.xml (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1*d57664e9SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*d57664e9SAndroid Build Coastguard Worker
3*d57664e9SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4*d57664e9SAndroid Build Coastguard Worker     package="com.example.renderthread"
5*d57664e9SAndroid Build Coastguard Worker     android:versionCode="1"
6*d57664e9SAndroid Build Coastguard Worker     android:versionName="1.0">
7*d57664e9SAndroid Build Coastguard Worker
8*d57664e9SAndroid Build Coastguard Worker    <application android:allowBackup="true"
9*d57664e9SAndroid Build Coastguard Worker         android:icon="@drawable/ic_launcher"
10*d57664e9SAndroid Build Coastguard Worker         android:label="@string/app_name"
11*d57664e9SAndroid Build Coastguard Worker         android:theme="@style/AppTheme">
12*d57664e9SAndroid Build Coastguard Worker        <activity android:name=".MainActivity"
13*d57664e9SAndroid Build Coastguard Worker             android:label="@string/app_name"
14*d57664e9SAndroid Build Coastguard Worker             android:exported="true">
15*d57664e9SAndroid Build Coastguard Worker            <intent-filter>
16*d57664e9SAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
17*d57664e9SAndroid Build Coastguard Worker
18*d57664e9SAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
19*d57664e9SAndroid Build Coastguard Worker            </intent-filter>
20*d57664e9SAndroid Build Coastguard Worker        </activity>
21*d57664e9SAndroid Build Coastguard Worker        <activity android:name=".SubActivity"
22*d57664e9SAndroid Build Coastguard Worker             android:theme="@style/AppTheme.Transparent"/>
23*d57664e9SAndroid Build Coastguard Worker    </application>
24*d57664e9SAndroid Build Coastguard Worker
25*d57664e9SAndroid Build Coastguard Worker</manifest>
26