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

Side by Side Diff: webrtc/tools/network_tester/androidapp/AndroidManifest.xml

Issue 2787863002: Add network tester client [android] (Closed)
Patch Set: Rebased Created 3 years, 8 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 package="com.google.media.networktester" >
4 <uses-permission android:name="android.permission.INTERNET" />
5 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
6 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
7 <uses-sdk android:minSdkVersion="17"
8 android:targetSdkVersion="24"
9 android:maxSdkVersion="24" />
10 <application
11 android:allowBackup="true"
12 android:icon="@mipmap/ic_launcher"
13 android:label="@string/app_name"
14 android:supportsRtl="true"
15 android:theme="@style/AppTheme" >
16 <activity android:name=".MainActivity" >
17 <intent-filter>
18 <action android:name="android.intent.action.MAIN" />
19
20 <category android:name="android.intent.category.LAUNCHER" />
21 </intent-filter>
22 </activity>
23 </application>
24 </manifest>
OLDNEW
« no previous file with comments | « webrtc/tools/network_tester/BUILD.gn ('k') | webrtc/tools/network_tester/androidapp/res/layout/activity_main.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698