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

Side by Side Diff: blimp/client/android/AndroidManifest.xml.jinja2

Issue 1295243003: Initial commit of the blimp/ folder and target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address final nits. Created 5 years, 3 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 2
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. 3 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
4
5 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 5 found in the LICENSE file. -->
7 -->
8 6
9 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 7 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
10 package="org.chromium.cronet_sample_apk"> 8 package="org.chromium.blimp">
11 9 <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
12 <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" /> 10 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
11 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
13 <uses-permission android:name="android.permission.INTERNET"/> 12 <uses-permission android:name="android.permission.INTERNET"/>
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 13 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
15 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> 14 <application android:name="BlimpApplication"
16 <application android:name="CronetSampleApplication" 15 android:label="Blimp">
17 android:label="Cronet Sample"> 16 <activity android:name="BlimpRendererActivity"
18 <activity android:name="CronetSampleActivity" 17 android:launchMode="standard"
19 android:launchMode="singleTask"
20 android:theme="@android:style/Theme.Holo.Light.NoActionBar" 18 android:theme="@android:style/Theme.Holo.Light.NoActionBar"
21 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize" 19 android:configChanges="orientation|keyboardHidden|keyboard|scr eenSize"
22 android:hardwareAccelerated="true"> 20 android:hardwareAccelerated="true">
23 <intent-filter> 21 <intent-filter>
24 <action android:name="android.intent.action.MAIN"/> 22 <action android:name="android.intent.action.MAIN"/>
25 <category android:name="android.intent.category.LAUNCHER"/> 23 <category android:name="android.intent.category.LAUNCHER"/>
26 </intent-filter> 24 </intent-filter>
27 </activity> 25 </activity>
28 </application> 26 </application>
29 </manifest> 27 </manifest>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698