Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: AndroidManifest.xml

Issue 9752046: Add automatic updates for release builds (Closed)
Patch Set: Request WRITE_EXTERNAL_STORAGE permission for release builds as well Created March 15, 2013, 7:27 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | res/values/sysstrings.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.adblockplus.android" 3 package="org.adblockplus.android"
4 android:versionCode="190" 4 android:versionCode="190"
5 android:versionName="1.0.2a" > 5 android:versionName="1.0.2a" >
6 6
7 <uses-sdk 7 <uses-sdk
8 android:minSdkVersion="7" 8 android:minSdkVersion="7"
9 android:targetSdkVersion="16" /> 9 android:targetSdkVersion="16" />
10 10
11 <uses-permission android:name="android.permission.INTERNET" /> 11 <uses-permission android:name="android.permission.INTERNET" />
12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> 12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> 13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
14 15
15 <uses-feature 16 <uses-feature
16 android:name="android.hardware.touchscreen" 17 android:name="android.hardware.touchscreen"
17 android:required="false" /> 18 android:required="false" />
18 19
19 <application 20 <application
20 android:name=".AdblockPlus" 21 android:name=".AdblockPlus"
21 android:allowBackup="true" 22 android:allowBackup="true"
22 android:icon="@drawable/ic_launcher" 23 android:icon="@drawable/ic_launcher"
23 android:label="@string/app_name" 24 android:label="@string/app_name"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 <intent-filter> 68 <intent-filter>
68 <action android:name="android.intent.action.PACKAGE_REPLACED" /> 69 <action android:name="android.intent.action.PACKAGE_REPLACED" />
69 70
70 <data android:scheme="package" /> 71 <data android:scheme="package" />
71 </intent-filter> 72 </intent-filter>
72 </receiver> 73 </receiver>
73 <receiver android:name=".updater.AlarmReceiver" /> 74 <receiver android:name=".updater.AlarmReceiver" />
74 </application> 75 </application>
75 76
76 </manifest> 77 </manifest>
OLDNEW
« no previous file with comments | « no previous file | res/values/sysstrings.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld