xref: /aosp_15_r20/external/webrtc/examples/androidvoip/AndroidManifest.xml (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4 *  Copyright 2020 The WebRTC Project Authors. All rights reserved.
5 *
6 *  Use of this source code is governed by a BSD-style license
7 *  that can be found in the LICENSE file in the root of the source
8 *  tree. An additional intellectual property rights grant can be found
9 *  in the file PATENTS.  All contributing project authors may
10 *  be found in the AUTHORS file in the root of the source tree.
11-->
12
13<manifest xmlns:android="http://schemas.android.com/apk/res/android"
14  package="org.webrtc.examples.androidvoip">
15
16
17  <uses-permission android:name="android.permission.INTERNET" />
18  <uses-permission android:name="android.permission.RECORD_AUDIO" />
19  <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
20
21  <uses-feature android:name="android.hardware.microphone" android:required="true" />
22  <uses-feature android:name="android.hardware.telephony" android:required="false" />
23
24  <application
25    android:allowBackup="true"
26    android:label="@string/app_name"
27    android:supportsRtl="true">
28    <activity android:name=".MainActivity"
29      android:windowSoftInputMode="stateHidden"
30      android:exported="true">
31      <intent-filter>
32        <action android:name="android.intent.action.MAIN" />
33        <category android:name="android.intent.category.LAUNCHER" />
34      </intent-filter>
35    </activity>
36  </application>
37
38</manifest>
39