How to fix parse error (APK modding)

Sbenny.com is trusted by 1,330,151 happy users since 2014.
Register

AndnixSH

Savage Lv6️⃣
SB Mod Squad ⭐
Member for 8 years


I have spent a week trying to fix parse error. I decompiled the APK and i just found out that the minimum version of Android system was not given

If the apk does not work on your device running Android 4.1.1 or below and it work on other Android version, that means the game developer forgot to give the minimum version of Android system in the APK file or they make it unsupported

In this tutorial, i will show you how to fix parse error on Minecraft PE 0.14.3 and make it installable on any devices running Android 4.1.1 and below. It is very easy to fix it so let's get started

Tools that we need on computer:
Notepad++
Any apktool. You can try APK Easy Tool: APK Easy Tool

Step by step:
1.
Backup your APK from your device or download the APK fron the internet. Read more about backup APK file

2. On your PC, download APK Easy Tool and Notepad++ and install them.

3. Open Apk Easy Tool, select the APK and decompile it



4. Navigate to the path where you decompile the APK. Right-click on Androidmanifest.xml and select "Edit with Notepad++"



5. The Notepad++ will open. Find the tag "<uses-sdk..." . if it does not exist, add the tag:
Code:
<uses-sdk android:minSdkVersion="integer" />
between other tags. Don't put it inside the tags. Replace "integer" with a number of API level. See the list below

Or visit: Codenames, Tags, and Build Numbers | Android Open Source Project



Note: If you still getting parse error, please add the property targetSdkVersion and maxSdkVersion

Code:
<uses-sdk android:minSdkVersion="integer"
          android:targetSdkVersion="integer"
          android:maxSdkVersion="integer" />
for older devices running 4.0.x - 4.4.x, use this tag

Code:
<uses-sdk android:minSdkVersion="14"
          android:targetSdkVersion="23" />
for Marshmallow 6.0.x, use this tag

Code:
<uses-sdk android:minSdkVersion="14"
          android:targetSdkVersion="23"
          android:maxSdkVersion="23" />
In my example, I'll take the API level "16" as the minimum version of Android 4.1.1.



6. Save the file and Recompile + sign the APK with Apktool.

7. Copy the modded APK to your device, and install it.

Enjoy gaming

Proof of me playing Minecraft PE on Android 4.1.1:





Proof of me playing Pokémon Go on Android 4.2.2





i CANNOT guarante that it will work for all devices!

Credits:
AndnixSH#
 
Last edited:

Sbenny

A crazy scientist
Staff member
Admin
SB Mod Squad ⭐
✔ Approved Releaser
Active User
This is truly awesome! Thank you so much for bringing us this amazing tutorial! I know few other games which gives the same error and I'll try your method! Pretty sure it will fix the issues!
 
Top