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

Side by Side Diff: platform_tools/android/app/AndroidManifest.xml

Issue 1215023017: Update Android Apps to use gradle (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: onlyIf Created 5 years, 5 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
« no previous file with comments | « .gitignore ('k') | platform_tools/android/app/build.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.skia"
4 android:versionCode="1"
5 android:versionName="1.0">
6 <uses-sdk android:minSdkVersion="14" />
7 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
8 <uses-permission android:name="android.permission.ACCESS_ALL_EXTERNAL_STORAG E" />
9 <!-- Needed to add to the download manager. -->
10 <uses-permission android:name="android.permission.INTERNET" />
11 <application android:label="SkiaAndroid">
12 <activity android:name=".SkiaSampleActivity"
13 android:theme="@android:style/Theme.Holo.Light"
14 android:configChanges="orientation|screenSize"
15 android:label="@string/app_name">
16 <intent-filter>
17 <action android:name="android.intent.action.MAIN" />
18 <category android:name="android.intent.category.LAUNCHER" />
19 </intent-filter>
20 </activity>
21 </application>
22 </manifest>
OLDNEW
« no previous file with comments | « .gitignore ('k') | platform_tools/android/app/build.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698