I have an APK file named: MyApp.apk. First I decode it using apktool:
apktool d MyApp.apk
It generates project folder: MyApp. Then I import it to Eclipse to edit it.
I create a new class as an Activity inside the MyApp project.
After finishing, I export the project to an APK file using apktool again:
apk b MyApp
It generates an APK file which I name Final_MyApp.apk. After, I sign it.
When I install Final_MyApp.apk using:
adb install Final_MyApp.apk
My application does not run. How can I fix it?