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  <uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" />
17
18  <uses-permission android:name="android.permission.INTERNET" />
19  <uses-permission android:name="android.permission.RECORD_AUDIO" />
20  <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
21
22  <uses-feature android:name="android.hardware.microphone" android:required="true" />
23  <uses-feature android:name="android.hardware.telephony" android:required="false" />
24
25  <application
26    android:allowBackup="true"
27    android:label="@string/app_name"
28    android:supportsRtl="true">
29    <activity android:name=".MainActivity"
30              android:windowSoftInputMode="stateHidden">
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