Pageviews

Showing posts with label android. Show all posts
Showing posts with label android. Show all posts

Wednesday, May 30, 2012

How download stock ROMs for LG mobile phones




  1. Find your LG mobile phone's Model and Serial Number. e.g. My phone model is P690F and its S/N is 123ABCD123456(it is labeled under battery).
  2. Type the following address in your web browser's url field:
    http://csmg.lgmobile.com:9002/svc/popup/model_check.jsp?model=[model]&esn=[serial_number]
    replace the [model] and [serial_number] with your LG phone's model and serial number.
  3. Type return to load the page. It should returns a string. You need to view the page source:
    • On Firefox: Tools -> Web Developer -> Page Source (Ctrl+U or Command+U)
    • On Safari: Right click blank area in the page, select View Source in the context menu
    • On IE: View -> Source
  4. Find the number inside <ESN></ESN> tag
  5. Type the following address in your web browser's url field:
    http://csmg.lgmobile.com:9002/csmg/b2c/client/auth_model_check2.jsp?esn=[esn_number]
    substitute the [esn_number] with the ESN number we get from last step.
  6. Load the page and view page source, you can the ROM update url inside <sw_url></sw_url> tag.



Tuesday, May 29, 2012

Android: save/backup your application apk files to SD card




  • Method 1: Use SaveAPK + OI File Manager
    1. Install OI File Explorer from Google Play Store
    2. Install SaveAPK from Google Play Store
    3. Run SaveAPK and select the application(apk) you want to save, then select the directory to store the apk (on SD card)
  • Method 2: Use Astro File Manager
    1. Install Astro File Manager from Google Play Store
    2. Start Astro File Manager then select Application Backup, backup the applications and the apk files will be store in backups/ directory on SD card.



Monday, May 28, 2012

Android 2.3 WIFI proxy settings




On some Android 2.3.X phones(e.g. my Acer Liquid Metal S120, WIFI proxy settings are missed in WIFI settings. The work around are below:
  • Option1: Use Opera Browser
    • Install from Google Play, or if you dont have internet connection you can download the apk from http://ftp.opera.com/pub/opera/android/mobile/1200/ on another computer, transfer to your phone and installed it
    • Open the Opera browser app, in the URL field, type opera:config, at this time the Preferences Editor should have opened in your screen.
    • Scroll down to proxy menu, in the HTTP Server and HTTPS Server, enter your proxy setting with the following format <Proxy IP>:<Port>. E.g. 192.168.1.1:3128
  • Options 2: Install "HTTP proxy settings" app in Google play. (It may not work on some phones.)



Saturday, May 26, 2012

LG Optimus Spirit P690F Chinese ROM V10F




  • Official Web Page
  • Purchase unlock code from Ebay
  • How to flash V10F_00.kdz ROM(China Chinese/English)
    1. You need a Windows PC (Windows XP sp3 or Windows 7 32/64 bit)
    2. Download the V10F_00.kdz ROM(China Chinese/English)
    3. Download and install Windows USB driver
    4. Download and install Software Update utility
    5. Download and extract KDZ_FW_UPD_EN.7z
    6. Configure your phone: Settings -> Applications -> Development, Tick USB Debugging
    7. Connect your phone to the Windows PC using USB cable and wait until all the drivers are installed automatically
    8. Connect the phone but DO NOT turn on USB storage
    9. Run KDZ_FW_UPD.exe as Administrator
    10. Set Type: 3GQCT           Phone Mode: DIAG
    11. Select the V10F_00.kdz file
    12. Press Lauch Software Update to start and wait (for 6~10 minutes) until you see --FINISHED-- line. (In the meantime, your phone gets into Emergency mode.)
    13. The phone should reboot itself. For me, it failed to reboot, it hangs in the LG splash logo then reboots again infinitely. To fix it, turn off the phone and then press and hold the Power + Volume Down + Home buttons. Wait till you see the droid with the progress bar under it then release the buttons.

LG P690 Official ROM updates (.kdz)

See also




Sunday, December 4, 2011

Video Game Emulators for Android




https://slideme.org/user/3168/applications/3168





Saturday, December 3, 2011

Droidhen Defender Hack




Droidhen Defender is an free Android game.

Prerequisites:
  • Root your device. Do not how to root your device? google + root
  • Install a root file manager app: super manager (free) or root explorer (non-free)


The game saves files at /data/data/com.droidhen.defender/shared_prefs, named: save0.xml save1.xml save2.xml

The save file is in the following format:
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<int name="magicStone" value="6" />
<string name="magicStonecheckValue">1e0e72ebd00ab9e2535db46431d29e93</string>
<int name="singleRetry" value="0" />
<int name="stage" value="2" />
<int name="gold" value="2200" />
<string name="goldcheckValue">a1a566f1d427b549f7b7c8dac5f0cb36</string>
<int name="hardMode" value="0" />
</map>


To change the values of gold and magic stone, we need to not only change the value of gold and magicStone, but also goldcheckValue and magicStonecheckValue. How to calculate the checkValue? Use the following fomula:

checkValue = md5(value+"checkChar") 

To calculate the checkValue for value 100000000:
  • If you are using Mac, run
    md5 -s 100000000checkChar
    in the Terminal window.
  • If you are using Linux run
    echo -n 100000000checkChar | md5sum
    in the terminal window
  • Or you can open this web page and type 100000000checkChar and click Calculate MD5 button

You should get the checkValue for 100000000,
4293191e6b63499927db54f204f7eb30

  1. You can copy the file, e.g. save0.xml, to /mnt/sdcard/ using your root file manager: super manager.
  2. Edit it with text editor
    • Modify the gold and magicStone to 100000000
    • Modify the goldcheckValue and magicStonecheckValue to 4293191e6b63499927db54f204f7eb30
  3. You modified save0.xml looks like below:

    <?xml version='1.0' encoding='utf-8' standalone='yes' ?>
    <map>
    <int name="magicStone" value="100000000" />
    <string name="magicStonecheckValue">4293191e6b63499927db54f204f7eb30</string>
    <int name="singleRetry" value="0" />
    <int name="stage" value="2" />
    <int name="gold" value="100000000" />
    <string name="goldcheckValue">4293191e6b63499927db54f204f7eb30</string>
    <int name="hardMode" value="0" />
    </map>
    
  4. Copy the modified save0.xml file back to /data/data/com.droidhen.defender/shared_prefs
  5. Start the game and load the saved file, you can now use the gold and magic stone to buy and upgrade anything.

See Also

http://forum.xda-developers.com/showthread.php?t=1335611&page=3


gameCIH: game cheating hacker for Android games




Prerequisite: the device is rooted.


http://www.cih.com.tw/gamecih


ZTE Tablet V9 (Optus)




ZTE Tablet V9 (Blade) Optus Australia


  1. Unlock from Optus (Using the following unlock code calculators)
  2. Official firmware upgrade (Android 2.2)
  3. Root the phone using z4root (Android 2.2)

See also:

ZTE V9 wiki page at [whirlpool.net.au]