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

Side by Side Diff: AndroidManifest.xml

Issue 8951121: adblockplusandroid: Use Holo theme in Android 3.0 and above (Closed)
Patch Set: Created Dec. 1, 2012, 8: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 | project.properties » ('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="146" 4 android:versionCode="146"
5 android:versionName="1.0.1a" > 5 android:versionName="1.0.1a" >
6 6
7 <uses-sdk 7 <uses-sdk
8 android:minSdkVersion="7" 8 android:minSdkVersion="7"
9 android:targetSdkVersion="7" /> 9 android:targetSdkVersion="7" />
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 14
15 <application 15 <application
16 android:name=".AdblockPlus" 16 android:name=".AdblockPlus"
17 android:icon="@drawable/ic_launcher" 17 android:icon="@drawable/ic_launcher"
18 android:label="@string/app_name" > 18 android:label="@string/app_name"
19 android:theme="@style/AppTheme">
19 <activity 20 <activity
20 android:name=".Preferences" 21 android:name=".Preferences"
21 android:label="@string/app_name" > 22 android:label="@string/app_name" >
22 <intent-filter> 23 <intent-filter>
23 <action android:name="android.intent.action.MAIN" /> 24 <action android:name="android.intent.action.MAIN" />
24 25
25 <category android:name="android.intent.category.LAUNCHER" /> 26 <category android:name="android.intent.category.LAUNCHER" />
26 </intent-filter> 27 </intent-filter>
27 </activity> 28 </activity>
28 <activity 29 <activity
(...skipping 26 matching lines...) Expand all
55 <intent-filter> 56 <intent-filter>
56 <action android:name="android.intent.action.PACKAGE_REPLACED" /> 57 <action android:name="android.intent.action.PACKAGE_REPLACED" />
57 58
58 <data android:scheme="package" /> 59 <data android:scheme="package" />
59 </intent-filter> 60 </intent-filter>
60 </receiver> 61 </receiver>
61 <receiver android:name=".updater.AlarmReceiver" /> 62 <receiver android:name=".updater.AlarmReceiver" />
62 </application> 63 </application>
63 64
64 </manifest> 65 </manifest>
OLDNEW
« no previous file with comments | « no previous file | project.properties » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld