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

Commit

Permalink
Randomize on boot is also app specific
Browse files Browse the repository at this point in the history
Refs #1831
  • Loading branch information
M66B committed Aug 19, 2014
1 parent 58433ed commit a0dceed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Version 2.99.x and version 3.x will be available with a [pro license](http://www

**Next release**

* Show if application has specific fake values ([issue](/../../issues/1831))
* Displaying if an application has specific fake values ([issue](/../../issues/1831))
* Allow own package name for *Srv_getPackageInfo* and *Srv_getApplicationInfo*
* Updated Dutch translation

Expand Down Expand Up @@ -198,7 +198,7 @@ XPrivacy 2

**Next release**

* Show if application has specific fake values ([issue](/../../issues/1831))
* Displaying if an application has specific fake values ([issue](/../../issues/1831))
* Allow own package name for *Srv_getPackageInfo* and *Srv_getApplicationInfo*
* Updated Dutch translation

Expand Down
9 changes: 5 additions & 4 deletions src/biz/bokhorst/xprivacy/PrivacyManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -862,10 +862,11 @@ public static void deleteSettings(int uid) {
}
}

private static final List<String> cSettingAppSpecific = Arrays.asList(new String[] { cSettingSerial,
cSettingLatitude, cSettingLongitude, cSettingAltitude, cSettingMac, cSettingImei, cSettingPhone,
cSettingId, cSettingGsfId, cSettingAdId, cSettingCountry, cSettingSubscriber, cSettingSSID, cSettingIP,
cSettingMcc, cSettingMnc, cSettingOperator, cSettingIccId, cSettingCid, cSettingLac, cSettingUa });
private static final List<String> cSettingAppSpecific = Arrays.asList(new String[] { cSettingRandom,
cSettingSerial, cSettingLatitude, cSettingLongitude, cSettingAltitude, cSettingMac, cSettingIP,
cSettingImei, cSettingPhone, cSettingId, cSettingGsfId, cSettingAdId, cSettingMcc, cSettingMnc,
cSettingCountry, cSettingOperator, cSettingIccId, cSettingCid, cSettingLac, cSettingSubscriber,
cSettingSSID, cSettingUa });

public static boolean hasSpecificSettings(int uid) {
boolean specific = false;
Expand Down

0 comments on commit a0dceed

Please sign in to comment.