Sami Kalliomäki | 3e77afd | 2018-03-08 16:43:16 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="org.webrtc.examples.androidnativeapi"> |
| 4 | |
Sami Kalliomäki | 3e77afd | 2018-03-08 16:43:16 +0100 | [diff] [blame] | 5 | |
| 6 | <uses-permission android:name="android.permission.INTERNET" /> |
Sami Kalliomäki | c475ac1 | 2018-05-16 15:49:18 +0200 | [diff] [blame] | 7 | <uses-permission android:name="android.permission.CAMERA" /> |
Sami Kalliomäki | 3e77afd | 2018-03-08 16:43:16 +0100 | [diff] [blame] | 8 | |
| 9 | <application |
| 10 | android:allowBackup="true" |
| 11 | android:label="@string/app_name" |
| 12 | android:supportsRtl="true"> |
Yaowen Guo | 9406c22 | 2022-05-26 07:39:36 +0800 | [diff] [blame] | 13 | <activity android:name=".MainActivity" |
| 14 | android:exported="true"> |
Sami Kalliomäki | 3e77afd | 2018-03-08 16:43:16 +0100 | [diff] [blame] | 15 | <intent-filter> |
| 16 | <action android:name="android.intent.action.MAIN" /> |
| 17 | |
| 18 | <category android:name="android.intent.category.LAUNCHER" /> |
| 19 | </intent-filter> |
| 20 | </activity> |
| 21 | </application> |
| 22 | |
| 23 | </manifest> |