xref: /aosp_15_r20/prebuilts/r8/tests/samples/HelloActivityWithR8/AndroidManifest.xml (revision f1fd37cb3c4ec94650f99d456d82ac1dac2c58ba)
1*f1fd37cbSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*f1fd37cbSAndroid Build Coastguard Worker<!-- Copyright (C) 2021 The Android Open Source Project
3*f1fd37cbSAndroid Build Coastguard Worker
4*f1fd37cbSAndroid Build Coastguard Worker     Licensed under the Apache License, Version 2.0 (the "License");
5*f1fd37cbSAndroid Build Coastguard Worker     you may not use this file except in compliance with the License.
6*f1fd37cbSAndroid Build Coastguard Worker     You may obtain a copy of the License at
7*f1fd37cbSAndroid Build Coastguard Worker
8*f1fd37cbSAndroid Build Coastguard Worker          http://www.apache.org/licenses/LICENSE-2.0
9*f1fd37cbSAndroid Build Coastguard Worker
10*f1fd37cbSAndroid Build Coastguard Worker     Unless required by applicable law or agreed to in writing, software
11*f1fd37cbSAndroid Build Coastguard Worker     distributed under the License is distributed on an "AS IS" BASIS,
12*f1fd37cbSAndroid Build Coastguard Worker     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*f1fd37cbSAndroid Build Coastguard Worker     See the License for the specific language governing permissions and
14*f1fd37cbSAndroid Build Coastguard Worker     limitations under the License.
15*f1fd37cbSAndroid Build Coastguard Worker-->
16*f1fd37cbSAndroid Build Coastguard Worker
17*f1fd37cbSAndroid Build Coastguard Worker<!-- Declare the contents of this Android application.  The namespace
18*f1fd37cbSAndroid Build Coastguard Worker     attribute brings in the Android platform namespace, and the package
19*f1fd37cbSAndroid Build Coastguard Worker     supplies a unique name for the application.  When writing your
20*f1fd37cbSAndroid Build Coastguard Worker     own application, the package name must be changed from "com.example.*"
21*f1fd37cbSAndroid Build Coastguard Worker     to come from a domain that you own or have control over. -->
22*f1fd37cbSAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
23*f1fd37cbSAndroid Build Coastguard Worker    package="com.example.android.helloactivitywithr8">
24*f1fd37cbSAndroid Build Coastguard Worker    <application android:label="Hello, Activity With R8!">
25*f1fd37cbSAndroid Build Coastguard Worker        <activity android:name="HelloActivityWithR8"
26*f1fd37cbSAndroid Build Coastguard Worker                android:exported="true">
27*f1fd37cbSAndroid Build Coastguard Worker            <intent-filter>
28*f1fd37cbSAndroid Build Coastguard Worker                <action android:name="android.intent.action.MAIN"/>
29*f1fd37cbSAndroid Build Coastguard Worker                <category android:name="android.intent.category.LAUNCHER"/>
30*f1fd37cbSAndroid Build Coastguard Worker            </intent-filter>
31*f1fd37cbSAndroid Build Coastguard Worker        </activity>
32*f1fd37cbSAndroid Build Coastguard Worker    </application>
33*f1fd37cbSAndroid Build Coastguard Worker</manifest>
34