Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
3.6.12 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed May 24, 2015
1 parent 732b6ba commit 4596beb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="biz.bokhorst.xprivacy"
android:installLocation="internalOnly"
android:versionCode="473"
android:versionCode="474"
android:versionName="3.6.12" >

<uses-sdk
Expand All @@ -25,6 +25,7 @@
android:protectionLevel="dangerous" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@ Changelog

**Next release**

* Fixed Android 5.x *getDeviceId* (IMEI) restriction ([issue](/../../issues/2198))
* Added Android 5.x multi-SIM restriction support
* ...

[Open issues](https://github.com/M66B/XPrivacy/issues?state=open)

**Version 3.6.12 BETA**

* Fixed Android 5.x *getDeviceId* (IMEI) restriction ([issue](/../../issues/2198))
* Added Android 5.x multi-SIM restriction support

**Version 3.6.11 TEST**

* Fixed Android 5.x restrictions ([issue](/../../issues/2195))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ XPrivacy asks for the following Android permissions:
* Contacts: to be able to restrict applications' access to contacts
* Boot: to be able to check if XPrivacy is enabled
* Internet: to be able to submit and fetch [crowd sourced restrictions](http://crowd.xprivacy.eu/)
* Storage: to be able to export XPrivacy's settings to the SD card (only with a [pro license](http://www.xprivacy.eu/))
* Storage: to be able to read the pro license file and to be able to export XPrivacy's settings to the SD card (only with a [pro license](http://www.xprivacy.eu/))
* Wakelock: to keep the processor running during batch operations

If desired, you can even restrict XPrivacy from accessing any of the above,
Expand Down
4 changes: 2 additions & 2 deletions src/biz/bokhorst/xprivacy/PrivacyService.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ public class PrivacyService extends IPrivacyService.Stub {
private static final String cTableUsage = "usage";
private static final String cTableSetting = "setting";

private static final int cCurrentVersion = 473;
private static final String cServiceName = "xprivacy473";
private static final int cCurrentVersion = 474;
private static final String cServiceName = "xprivacy474";

private boolean mCorrupt = false;
private boolean mNotified = false;
Expand Down

0 comments on commit 4596beb

Please sign in to comment.