今天来点GooglePlay源包绕过验证检测教程
说实话很简单
说实话很简单
教程开始前,你需要提取Minecraft Bedrock的Apks并把它转换成Apk(这部分略过网上有教程)
1.从任意一个Dex编辑器打开 Apk 内的 Classes2 Dex
2.搜索 类名
GooglePlayStore$MinecraftLicenseCheckerCallback
3.检查 类路径 比如
iget-object v0, p0, Lcom/mojang/minecraftpe/store/googleplay/GooglePlayStore$MinecraftLicenseCheckerCallback;->this$0:Lcom/mojang/minecraftpe/store/googleplay/GooglePlayStore;
这段中 Lcom/mojang/minecraftpe/store/googleplay/GooglePlayStore$MinecraftLicenseCheckerCallback
便是路径4.修改
dontAllow(I)V
applicationError(I)V
直接重定向到 allow(I)V
代码:
invoke-virtual {p0, p1}, Lcom/mojang/minecraftpe/store/googleplay/GooglePlayStore$MinecraftLicenseCheckerCallback;->allow(I)V
这样便可完美绕过且减小了代码量