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

Unified Diff: AndroidManifest.xml

Issue 9316018: ABP/Android Holo theme (Closed)
Patch Set: Created Feb. 1, 2013, 7:55 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | project.properties » ('j') | project.properties » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: AndroidManifest.xml
===================================================================
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -2,21 +2,26 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.adblockplus.android"
android:versionCode="168"
- android:versionName="1.0.1" >
+ android:versionName="1.0.2a" >
<uses-sdk
android:minSdkVersion="7"
- android:targetSdkVersion="7" />
+ android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
+ <uses-feature
+ android:name="android.hardware.touchscreen"
+ android:required="false" />
+
<application
android:name=".AdblockPlus"
+ android:allowBackup="true"
Felix Dahlke 2013/02/01 12:11:19 How I understand it, we should set this to false.
Andrey Novikov 2013/02/02 09:58:30 Done.
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
- android:theme="@style/AppTheme">
+ android:theme="@style/Theme.Sherlock" >
<activity
android:name=".Preferences"
android:label="@string/app_name" >
@@ -34,13 +39,13 @@
android:excludeFromRecents="true"
android:label="@string/app_name"
android:launchMode="singleInstance"
- android:theme="@android:style/Theme.Dialog" />
+ android:theme="@style/Theme.Sherlock.Dialog" />
<activity
android:name=".CrashReportDialog"
android:excludeFromRecents="true"
android:label="@string/crash_name"
android:launchMode="singleInstance"
- android:theme="@android:style/Theme.Dialog" />
+ android:theme="@style/Theme.Sherlock.Dialog" />
<activity
android:name=".updater.UpdaterActivity"
android:excludeFromRecents="true"
« no previous file with comments | « no previous file | project.properties » ('j') | project.properties » ('J')

Powered by Google App Engine
This is Rietveld