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

Delta Between Two Patch Sets: sitescripts/extensions/test/data/AndroidManifest.xml

Issue 29354748: Fixes 4464 - Restore get_min_sdk_version() function from sitescripts.extensions.android module that… (Closed) Base URL: https://hg.adblockplus.org/sitescripts
Left Patch Set: Created Sept. 22, 2016, 4:03 p.m.
Right Patch Set: Mock plugin repositories instead of cloning them Created Sept. 27, 2016, 9:44 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « sitescripts/extensions/test/adblockplussafari.pem ('k') | sitescripts/extensions/test/data/README.txt » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 <?xml version="1.0" encoding="utf-8"?>
2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="org.adblockplus.android"
4 android:versionCode="359"
5 android:versionName="1.3" >
6
7 <uses-sdk
8 android:minSdkVersion="7"
9 android:targetSdkVersion="16" />
10
11 <uses-permission android:name="android.permission.INTERNET" />
12 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
13 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
14 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
15 <uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
16
17 <uses-feature
18 android:name="android.hardware.touchscreen"
19 android:required="false" />
20
21 <application
22 android:name=".AdblockPlus"
23 android:allowBackup="true"
24 android:icon="@drawable/ic_launcher"
25 android:label="@string/app_name"
26 android:theme="@style/AppTheme" >
27 <activity
28 android:name=".Preferences"
29 android:label="@string/app_name" >
30 <intent-filter>
31 <action android:name="android.intent.action.MAIN" />
32
33 <category android:name="android.intent.category.LAUNCHER" />
34 </intent-filter>
35 </activity>
36 <activity
37 android:name=".AdvancedPreferences"
38 android:label="@string/app_name" />
39 <activity
40 android:name=".ConfigurationActivity"
41 android:excludeFromRecents="true"
42 android:label="@string/app_name"
43 android:launchMode="singleInstance"
44 android:theme="@style/Theme.Sherlock.Dialog" />
45 <activity
46 android:name=".ProxyConfigurationActivity"
47 android:excludeFromRecents="true"
48 android:label="@string/proxysettings_name"
49 android:launchMode="singleInstance"
50 android:theme="@style/Theme.Sherlock.Dialog" />
51 <activity
52 android:name=".CrashReportDialog"
53 android:excludeFromRecents="true"
54 android:label="@string/crash_name"
55 android:launchMode="singleInstance"
56 android:theme="@style/Theme.Sherlock.Dialog" />
57 <activity
58 android:name=".updater.UpdaterActivity"
59 android:excludeFromRecents="true"
60 android:theme="@android:style/Theme.Translucent" />
61
62 <service android:name=".ProxyService" />
63 <service android:name=".updater.UpdaterService" />
64
65 <receiver android:name=".Starter" >
66 <intent-filter>
67 <action android:name="android.intent.action.BOOT_COMPLETED" />
68 </intent-filter>
69 <intent-filter>
70 <action android:name="android.intent.action.PACKAGE_REPLACED" />
71
72 <data android:scheme="package" />
73 </intent-filter>
74 </receiver>
75 </application>
76
77 </manifest>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld