MrNob0dy Posted January 6, 2017 Posted January 6, 2017 Stack Exchange makes me mad because of that proper grammer rule.. soo i post my question here.Some games or apps require to install other apps instead to pay for some in app features. Where is recorded that kind of data, i think this is in some .prop files, but i just guess..
Administrators Enyby Posted January 6, 2017 Administrators Posted January 6, 2017 From PackageManager, like this: public static boolean isPackageInstalled(String pkg) { try { pm.getApplicationInfo(pkg, 0); return true; } catch (NameNotFoundException e) { return false; } }
MrNob0dy Posted January 7, 2017 Author Posted January 7, 2017 Okay so they have build in package manager.. But can i fake that i have installed app.? To fool the manager.
Administrators Enyby Posted January 7, 2017 Administrators Posted January 7, 2017 From xposed - yes. Or by patch target app.
Skullboyq Posted January 7, 2017 Posted January 7, 2017 2 hours ago, MrNob0dy said: Okay so they have build in package manager.. But can i fake that i have installed app.? To fool the manager. @NoFear always tells me to use XPrivacy, its a xposed module that can disable app detecting. I have never found out how to do it though so he might be able to explain.
Moderators NoFear Posted January 7, 2017 Moderators Posted January 7, 2017 21 minutes ago, Skullboyq said: @NoFear always tells me to use XPrivacy, its a xposed module that can disable app detecting. I have never found out how to do it though so he might be able to explain. Xprivacy I don't think can spoof something installed. Definitely can restrict another app from seeing it.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.