So, in sketchware I made two apps. If they find LP in its folder, they turn off. The first app was patched and didn't turn off, but the second was patched and still closed. Because look in the code:
First app(didnt close):
if (FileUtil.isExistFile("/storage/emulated/0/Android/data/com.android.vending.billing.InAppBillingService.COIN/files/LuckyPatcher")) {
this.finish();
}
Second app(closed):
if (FileUtil.isExistFile("/storage/emulated/0/Android".concat("/data/com.android.ve").concat("nding.billing.InA".concat("ppBillingService.COIN/files/LuckyPatcher")))) {
SketchwareUtil.showMessage(this.getApplicationContext(), "Lucky Patcher found.");
this.finish();
}
}
Fix please, if you can
Sharing is caring, show love and share the thread with your friends.