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

Side by Side Diff: components/cronet/android/test/javaperftests/AndroidManifest.xml

Issue 1536433002: [Cronet] Get Cronet performance test running again (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ignore netty proguard errors Created 4 years, 10 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
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.chromium.net"> 3 package="org.chromium.net">
4 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" /> 4 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" />
5 <uses-permission android:name="android.permission.INTERNET"/> 5 <uses-permission android:name="android.permission.INTERNET"/>
6 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 6 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 7 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
8 <application> 8 <application>
9 <!-- Used to use Theme.NoDisplay but this is no longer the recommended
10 way and crashes in Android Marshmallow.
11 https://plus.google.com/105051985738280261832/posts/LjnRzJKWPGW -->
9 <activity android:name="CronetPerfTestActivity" 12 <activity android:name="CronetPerfTestActivity"
10 android:theme="@android:style/Theme.NoDisplay"> 13 android:theme="@android:style/Theme.Translucent.NoTitleBar">
11 <intent-filter> 14 <intent-filter>
12 <action android:name="android.intent.action.MAIN" /> 15 <action android:name="android.intent.action.MAIN" />
13 <category android:name="android.intent.category.LAUNCHER" /> 16 <category android:name="android.intent.category.LAUNCHER" />
14 </intent-filter> 17 </intent-filter>
15 </activity> 18 </activity>
16 </application> 19 </application>
17 </manifest> 20 </manifest>
OLDNEW
« no previous file with comments | « components/cronet/android/test/cronet_test_util.cc ('k') | components/cronet/android/test/javaperftests/proguard.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698