QUOTE(annoymous1234 @ Dec 22 2011, 12:33 PM)
cowithgun i dont understand a thing.. i download the apktool edi them what?

Sorry that it cannot be any more easier to understand. Here is my best ability to describe this, if still cannot understand, may be this is not for you.

Just mark this as spam.
obviously, you need Android SDK (http://developer.android.com/sdk/index.html) and Java Development Kit (JDK) as well... download the JDK1.6 from here:
http://www.oracle.com/technetwork/java/jav...oad-346242.html(No root is needed)
once done, put your APK into a directory and follow the steps i listed previously to decode it. for example, if you put blood and glory APK into c:\tmp: . Start cmd or a shell:
Step 1:
CODE
cd /tmp
java -jar apktool.jar decode com.glu.gladiator-2.apk
Step 2:
it will decode the blood and glory APK into its own directory. inside that directory, there is a file called AndroidManifest.xml. you need to open it with notepad, or anything to edit it. Locate and remove the following lines from the file, then save the file.
CODE
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<receiver android:name="com.urbanairship.CoreReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
</intent-filter>
</receiver>
Step 3:
Once done, you can now repack the APK:
3. Rebuild APK. Go back to your command prompt and type this:
CODE
java -jar apktool.jar build gladiator
Once done, a new APK will be generated in /gladiator/dist/ This is the new installer that no longer has permissions you stripped. But before you can install it on your phone, you need to sign it with your key.
Step 4:
Sign APK (*important to use jdk1.6 and not 1.7)
CODE
"\jdk1.6.0_29\bin\jarsigner" -verbose -keystore your_keystore gladiator\dist\com.glu.gladiator-2.apk your_key_alias
Step 5:
For good practice, it is recommended you do byte alignment on your APK as well:
CODE
\android-sdk\tools\zipalign -v 4 com.glu.gladiator-2.apk g.apk
This will generate another APK file called g.apk. This is the APK you need to install to your phone.
Step 6:
If you have not done so, remove your old game first, then, you can copy the g.apk to your phone, or use the Android SDK to install it:
CODE
adb install g.apk
Once done, you will have a a new Blood and Gladiator game in your phone that will not auto-start when phone start.
This post has been edited by cowithgun: Dec 22 2011, 02:37 PM