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

Commit

Permalink
3.6.9 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
M66B committed Apr 17, 2015
1 parent 474ef27 commit e8d32fe
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="biz.bokhorst.xprivacy"
android:installLocation="internalOnly"
android:versionCode="470"
android:versionName="3.6.8" >
android:versionCode="471"
android:versionName="3.6.9" >

<uses-sdk
android:minSdkVersion="15"
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,20 @@ Changelog

**Next release**

* ...

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

**Version 3.6.9 STABLE**

**This release does not fix anything for Android 5.x**

* Fixed all problems reported through the debug info
* Fixed restrictions *getToken* and *getTokenWithNotification* ([issue](/../../issues/2169))
* Fixed restriction *AdvertisingId* ([issue](/../../issues/2166))
* Added restriction *GMS5.getCurrentPlace*
* Updated Norwegian translation

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

**Version 3.6.8 UNSUPPORTED**

* Running in compatibility mode on Lollipop
Expand Down
2 changes: 1 addition & 1 deletion src/biz/bokhorst/xprivacy/Meta.java
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ public static List<Hook> get() {
mListHook.add(new Hook("location", "GMS5.requestLocationUpdates", "ACCESS_COARSE_LOCATION,ACCESS_FINE_LOCATION", 1, "2.99.26", null).unsafe().optional());
mListHook.add(new Hook("location", "GMS5.requestActivityUpdates", "com.google.android.gms.permission.ACTIVITY_RECOGNITION", 1, "2.99.26", null).unsafe());

mListHook.add(new Hook("location", "GMS5.getCurrentPlace", "ACCESS_FINE_LOCATION", 1, "3.6.8", null).unsafe());
mListHook.add(new Hook("location", "GMS5.getCurrentPlace", "ACCESS_FINE_LOCATION", 1, "3.6.9", null).unsafe());

mListHook.add(new Hook("location", "MapV1.enableMyLocation", "ACCESS_COARSE_LOCATION,ACCESS_FINE_LOCATION", 1, "2.1.25", null).unsafe().optional());

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 = 470;
private static final String cServiceName = "xprivacy470";
private static final int cCurrentVersion = 471;
private static final String cServiceName = "xprivacy471";

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

0 comments on commit e8d32fe

Please sign in to comment.