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

Side by Side Diff: webrtc/modules/audio_device/test/android/audio_device_android_test/AndroidManifest.xml

Issue 2378103002: Remove old presumably unused directory. (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 android:versionCode="1"
4 android:versionName="1.0" package="org.webrtc.voiceengine.test">
5 <application android:icon="@drawable/icon"
6 android:label="@string/app_name"
7 android:debuggable="true">
8 <activity android:label="@string/app_name"
9 android:name="AudioDeviceAndroidTest">
10 <intent-filter>
11 <action android:name="android.intent.action.MAIN" />
12 <category android:name="android.intent.category.LAUNCHER" />
13 </intent-filter>
14 </activity>
15 </application>
16
17 <uses-sdk android:minSdkVersion="3"></uses-sdk>
18 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS">
19 </uses-permission>
20 <uses-permission android:name="android.permission.RECORD_AUDIO">
21 </uses-permission>
22 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698