From 2d1d70b3b6007a64e2203ad01f8711e8e303d2df Mon Sep 17 00:00:00 2001 From: topjohnwu Date: Sat, 10 Dec 2016 23:44:16 +0800 Subject: [PATCH] Fix su app invoke --- su.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/su.h b/su.h index 2e854d1cd..a690a8cb6 100644 --- a/su.h +++ b/su.h @@ -46,13 +46,13 @@ #define CM_ROOT_ACCESS_APPS_AND_ADB 3 // DO NOT CHANGE LINE BELOW, java package name will always be the same -#define JAVA_PACKAGE_NAME "me.phh.superuser" +#define JAVA_PACKAGE_NAME "com.koushikdutta.superuser" // If --rename-manifest-package is used in AAPT, this // must be changed to correspond to the new APK package name // See the two Android.mk files for more details. #ifndef REQUESTOR -#define REQUESTOR JAVA_PACKAGE_NAME +#define REQUESTOR "me.phh.superuser" #endif // This is used if wrapping the fragment classes and activities // with classes in another package. CM requirement.