diff --git a/CHANGELOG.md b/CHANGELOG.md index ae5bd6e71..539dd7774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ Version 2.99.x and version 3.x will be available with a [pro license](http://www **Next release** * Added parameter package name to *Srv_getPackageInfo* and *Srv_getApplicationInfo* +* Added support for [Android Revolution HD](http://forum.xda-developers.com/showthread.php?t=1925402) * Updated French translation * Updated German translation diff --git a/README.md b/README.md index 0494709fc..f7e36a0f9 100644 --- a/README.md +++ b/README.md @@ -1143,6 +1143,7 @@ Nevertheless, the most sensitive data, like contacts and your location, can safe * [Dirty Unicorns](http://www.teamdirt.me/) * [Liquid Smooth](http://liquidsmooth.net/) * [Paranoid Android](http://paranoidandroid.co/) + * [Android Revolution HD](http://forum.xda-developers.com/showthread.php?t=1925402) * Compatibility mode = all other Android versions/variants *About* will show if XPrivacy 3 is running in compatibility mode, which means XPrivacy 3 is behaving as XPrivay 2. diff --git a/src/biz/bokhorst/xprivacy/Hook.java b/src/biz/bokhorst/xprivacy/Hook.java index f237a9225..fdd167de2 100644 --- a/src/biz/bokhorst/xprivacy/Hook.java +++ b/src/biz/bokhorst/xprivacy/Hook.java @@ -153,7 +153,7 @@ public static boolean isAOSP(int sdk) { if (Build.DISPLAY == null || Build.HOST == null) return false; return (isAOSP() || isCyanogenMod() || isOmni() || isMIUI() || isSlim() || isParanoidAndroid() - || isCarbon() || isDirtyUnicorns() || isLiquidSmooth()); + || isCarbon() || isDirtyUnicorns() || isLiquidSmooth() || isAndroidRevolutionHD()); } else return false; } @@ -194,6 +194,10 @@ public static boolean isLiquidSmooth() { return Build.DISPLAY.startsWith("liquid_"); } + public static boolean isAndroidRevolutionHD() { + return Build.DISPLAY.startsWith("Android Revolution HD"); + } + public Version getFrom() { return mFrom; }