Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1594)

Unified Diff: talk/examples/android/AndroidManifest.xml

Issue 1235563006: Move talk/examples/* to webrtc/examples. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 201508051337 Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « talk/examples/OWNERS ('k') | talk/examples/android/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: talk/examples/android/AndroidManifest.xml
diff --git a/talk/examples/android/AndroidManifest.xml b/talk/examples/android/AndroidManifest.xml
deleted file mode 100644
index 631660a2dce69428a9fbf54e318e70dcc9e6ca1b..0000000000000000000000000000000000000000
--- a/talk/examples/android/AndroidManifest.xml
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="org.appspot.apprtc"
- android:versionCode="1"
- android:versionName="1.0">
-
- <uses-feature android:name="android.hardware.camera" />
- <uses-feature android:name="android.hardware.camera.autofocus" />
- <uses-feature android:glEsVersion="0x00020000" android:required="true" />
- <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="21" />
-
- <uses-permission android:name="android.permission.CAMERA" />
- <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
- <uses-permission android:name="android.permission.RECORD_AUDIO" />
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
-
- <application android:label="@string/app_name"
- android:icon="@drawable/ic_launcher"
- android:allowBackup="false">
-
- <activity android:name="ConnectActivity"
- android:label="@string/app_name">
- <intent-filter>
- <action android:name="android.intent.action.MAIN"/>
- <category android:name="android.intent.category.LAUNCHER"/>
- </intent-filter>
-
- <intent-filter>
- <action android:name="android.intent.action.VIEW"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <category android:name="android.intent.category.BROWSABLE"/>
- <data android:scheme="https" android:host="apprtc.appspot.com"/>
- <data android:scheme="http" android:host="apprtc.appspot.com"/>
- </intent-filter>
- </activity>
-
- <activity android:name="SettingsActivity"
- android:label="@string/settings_name">
- </activity>
-
- <activity android:name="CallActivity"
- android:label="@string/app_name"
- android:screenOrientation="fullUser"
- android:configChanges="orientation|screenSize"
- android:theme="@style/CallActivityTheme">
- </activity>
- </application>
-</manifest>
« no previous file with comments | « talk/examples/OWNERS ('k') | talk/examples/android/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698