xref: /aosp_15_r20/external/webrtc/examples/androidnativeapi/AndroidManifest.xml (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1*d9f75844SAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*d9f75844SAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3*d9f75844SAndroid Build Coastguard Worker  package="org.webrtc.examples.androidnativeapi">
4*d9f75844SAndroid Build Coastguard Worker
5*d9f75844SAndroid Build Coastguard Worker
6*d9f75844SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.INTERNET" />
7*d9f75844SAndroid Build Coastguard Worker  <uses-permission android:name="android.permission.CAMERA" />
8*d9f75844SAndroid Build Coastguard Worker
9*d9f75844SAndroid Build Coastguard Worker  <application
10*d9f75844SAndroid Build Coastguard Worker    android:allowBackup="true"
11*d9f75844SAndroid Build Coastguard Worker    android:label="@string/app_name"
12*d9f75844SAndroid Build Coastguard Worker    android:supportsRtl="true">
13*d9f75844SAndroid Build Coastguard Worker    <activity android:name=".MainActivity"
14*d9f75844SAndroid Build Coastguard Worker      android:exported="true">
15*d9f75844SAndroid Build Coastguard Worker      <intent-filter>
16*d9f75844SAndroid Build Coastguard Worker        <action android:name="android.intent.action.MAIN" />
17*d9f75844SAndroid Build Coastguard Worker
18*d9f75844SAndroid Build Coastguard Worker        <category android:name="android.intent.category.LAUNCHER" />
19*d9f75844SAndroid Build Coastguard Worker      </intent-filter>
20*d9f75844SAndroid Build Coastguard Worker    </activity>
21*d9f75844SAndroid Build Coastguard Worker  </application>
22*d9f75844SAndroid Build Coastguard Worker
23*d9f75844SAndroid Build Coastguard Worker</manifest>
24