I'm going through these instructions but they are pretty complicated for me.
I can open cmd and open adb shell but i don't understand how to open adb from the directory where i donwloaded said files.
I'm stumped here: Open an adb shell from your computer to your device from the directory you've just downloaded those files toInstructions for getting rid of ZIP version only <4.0.3:
EDIT (28/12/11)
- Open ClockworkMod Recovery
- Download the correct files from http://googlewallet.lukegb.com/stock/system/ that match your Android build and system - ICL53F is Android 4.0.2, yakju is GSM and mysid is LTE.
You'll need:
- NfcGoogle.apk
- com.android.nfc_extras.jar
- Open an adb shell from your computer to your device from the directory you've just downloaded those files to
- Run (on device via adb shell):
Code:mount /system mount /data rm /system/app/Wallet.* rm /system/app/NfcGoogle.* rm /system/framework/com.android.nfc_extras.* exit- Run (on computer):
Code:adb pull /data/system/packages.xml packages.xml- Make a backup of the newly-created packages.xml file which is on your computer
- Open packages.xml in a text editor (which isn't notepad)
- Copy ALL the content
- Open http://googlewallet.lukegb.com/gn_packages_xml_fixer.html in a web browser
- Paste the content into the left-hand "Input" box
- Click "Fix it"
- Copy ALL the content from the right-hand "Output" box
- Delete all the content in the text editor with packages.xml open
- Paste the content
- Save packages.xml
- Close your text editor
- Run (on computer):
Code:adb push NfcGoogle.apk /system/app/NfcGoogle.apk adb push com.android.nfc_extras.jar /system/framework/com.android.nfc_extras.jar adb push packages.xml /data/system/packages.xml adb shell chmod 644 /system/app/NfcGoogle.apk adb shell chmod 644 /system/framework/com.android.nfc_extras.jar- You're done.
Important notice for all those who have already attempted to remove the ZIP version to replace with the APK version
Read this if NFC has disappeared from your more menu, you get crashes in the More menu, Wallet now forcecloses where it didn't before after removing the ZIP
I have just (idiotically) noticed a blindingly obvious flaw with the files I had previously uploaded to the stock folder on http://googlewallet.lukegb.com - they were the odexed versions of the files, crucially WITHOUT the .odex files. I've replaced them with pseudo-stock (same signatures) versions of the apks and if you replace the NfcGoogle.apk, Android should correctly take this into account.
Don't forget to chmod 644 the NfcGoogle apk and the com.android.nfc_extras.jar files!
I can open cmd and open adb shell but i don't understand how to open adb from the directory where i donwloaded said files.