xref: /aosp_15_r20/development/tools/templates/AndroidManifest.template (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1*90c8c64dSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*90c8c64dSAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3*90c8c64dSAndroid Build Coastguard Worker      package="PACKAGE"
4*90c8c64dSAndroid Build Coastguard Worker      android:versionCode="1"
5*90c8c64dSAndroid Build Coastguard Worker      android:versionName="1.0">
6*90c8c64dSAndroid Build Coastguard Worker    <application android:label="@string/app_name" ICON>
7*90c8c64dSAndroid Build Coastguard Worker        <activity android:name="ACTIVITY_ENTRY_NAME"
8*90c8c64dSAndroid Build Coastguard Worker                  android:label="@string/app_name">
9*90c8c64dSAndroid Build Coastguard Worker            <intent-filter>
10*90c8c64dSAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN" />
11*90c8c64dSAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER" />
12*90c8c64dSAndroid Build Coastguard Worker            </intent-filter>
13*90c8c64dSAndroid Build Coastguard Worker        </activity>
14*90c8c64dSAndroid Build Coastguard Worker    </application>
15*90c8c64dSAndroid Build Coastguard Worker</manifest>
16