blob: 74321566a8cab221514707b200d124e34128d028 [file] [log] [blame]
Hall Liu54f04732017-12-15 16:34:10 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2017 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070018 package="com.android.phone.testapps.telephonyregistry">
Hall Liuf19c44f2018-11-27 14:38:17 -080019 <uses-sdk android:minSdkVersion="25"
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070020 android:targetSdkVersion="25"/>
Hall Liuf19c44f2018-11-27 14:38:17 -080021
Hall Liu54f04732017-12-15 16:34:10 -080022 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
23 <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
Brad Ebingerdbff73e2018-11-08 10:13:19 -080024 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/>
Hall Liu495b3ae2019-01-29 16:53:32 -080025 <uses-permission android:name="android.permission.READ_PRECISE_PHONE_STATE"/>
Hall Liu54f04732017-12-15 16:34:10 -080026 <application android:label="TelephonyRegistryTestApp">
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070027 <activity android:name=".TelephonyRegistryTestApp"
28 android:label="TelephonyRegistryTestApp"
29 android:exported="true">
Hall Liu54f04732017-12-15 16:34:10 -080030 <intent-filter>
Ashwini Oruganti4f2fb582020-03-23 17:11:13 -070031 <action android:name="android.intent.action.MAIN"/>
32 <category android:name="android.intent.category.DEFAULT"/>
33 <category android:name="android.intent.category.LAUNCHER"/>
Hall Liu54f04732017-12-15 16:34:10 -080034 </intent-filter>
35 </activity>
36 </application>
37</manifest>