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