xref: /aosp_15_r20/pdk/apps/HelloPDK/AndroidManifest.xml (revision ac7df209e3ba002eb4fcfc7c8d4b818a0371fca4)
1*ac7df209SYuntao Xu<?xml version="1.0" encoding="utf-8"?>
2*ac7df209SYuntao Xu<!-- Copyright (C) 2012 The Android Open Source Project
3*ac7df209SYuntao Xu
4*ac7df209SYuntao Xu     Licensed under the Apache License, Version 2.0 (the "License");
5*ac7df209SYuntao Xu     you may not use this file except in compliance with the License.
6*ac7df209SYuntao Xu     You may obtain a copy of the License at
7*ac7df209SYuntao Xu
8*ac7df209SYuntao Xu          http://www.apache.org/licenses/LICENSE-2.0
9*ac7df209SYuntao Xu
10*ac7df209SYuntao Xu     Unless required by applicable law or agreed to in writing, software
11*ac7df209SYuntao Xu     distributed under the License is distributed on an "AS IS" BASIS,
12*ac7df209SYuntao Xu     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*ac7df209SYuntao Xu     See the License for the specific language governing permissions and
14*ac7df209SYuntao Xu     limitations under the License.
15*ac7df209SYuntao Xu-->
16*ac7df209SYuntao Xu
17*ac7df209SYuntao Xu<!-- Declare the contents of this Android application.  The namespace
18*ac7df209SYuntao Xu     attribute brings in the Android platform namespace, and the package
19*ac7df209SYuntao Xu     supplies a unique name for the application.  When writing your
20*ac7df209SYuntao Xu     own application, the package name must be changed from "com.example.*"
21*ac7df209SYuntao Xu     to come from a domain that you own or have control over. -->
22*ac7df209SYuntao Xu<manifest xmlns:android="http://schemas.android.com/apk/res/android"
23*ac7df209SYuntao Xu    package="com.example.android.helloPDK">
24*ac7df209SYuntao Xu
25*ac7df209SYuntao Xu    <uses-permission android:name="android.permission.CALL_PHONE" />
26*ac7df209SYuntao Xu
27*ac7df209SYuntao Xu    <application android:label="Hello, PDK!">
28*ac7df209SYuntao Xu        <activity android:name="MainActivity">
29*ac7df209SYuntao Xu            <intent-filter>
30*ac7df209SYuntao Xu                <action android:name="android.intent.action.MAIN" />
31*ac7df209SYuntao Xu                <category android:name="android.intent.category.DEFAULT" />
32*ac7df209SYuntao Xu                <category android:name="android.intent.category.LAUNCHER" />
33*ac7df209SYuntao Xu            </intent-filter>
34*ac7df209SYuntao Xu        </activity>
35*ac7df209SYuntao Xu        <activity android:name=".jni.HelloJni"
36*ac7df209SYuntao Xu            android:label="@string/activity_jni" >
37*ac7df209SYuntao Xu            <intent-filter>
38*ac7df209SYuntao Xu                <action android:name="android.intent.action.MAIN"/>
39*ac7df209SYuntao Xu                <category android:name="android.intent.category.SAMPLE_CODE" />
40*ac7df209SYuntao Xu            </intent-filter>
41*ac7df209SYuntao Xu        </activity>
42*ac7df209SYuntao Xu        <activity android:name=".telephony.DialerActivity"
43*ac7df209SYuntao Xu            android:label="@string/activity_dialer" >
44*ac7df209SYuntao Xu            <intent-filter>
45*ac7df209SYuntao Xu                <action android:name="android.intent.action.MAIN"/>
46*ac7df209SYuntao Xu                <category android:name="android.intent.category.SAMPLE_CODE" />
47*ac7df209SYuntao Xu            </intent-filter>
48*ac7df209SYuntao Xu        </activity>
49*ac7df209SYuntao Xu    </application>
50*ac7df209SYuntao Xu</manifest>
51