Tag Archives: Android

Run WhatsApp on Android SDK without a phone

Update @ 2013-8-25: You can consider Whatsapp Plus as suggested by harish.

Update @ 2012-11-13: Anyone could confirm the following solution work or not?

WhatsApp requires a SIM-Card. I know from various xda-developers discussions, that it’s easier to do a backup from whatsapp on your phone with titanium backup, and then restore it inside your VM. But, the message database is local and messages are not synced across identical accounts.

Reference: CrazyEngineers – Unable to Install Whatsapp on ubuntu; help!!!

Update @ 2012-9-23: This maybe a temporary workaround but only for people who already running whatsapp with his device.
WhatsApp Web Client

Update @ 2012-08-07: I have tried on both BlueStacks and Android emulator. Both of them have connection problem. Seems the Whatsapp server somehow blocked the verification. Currently seems no way to run Whatsapp on PC. =.=

Would that be a proxy problem? Anyone could complete the verification?

 

Since i dun have a smart phone~ My friend Simon blames me as he can’t reach me with WhatsApp. So he sent me a Taiwan blog post about using WhatsApp in PC and now i translate the steps in English.

1. Download and install the Java SDK. (Download Java 7)

2. Download the Android SDK @ Android Developer

3. Extract the Android SDK and run the SDK Manager.exe
Continue reading Run WhatsApp on Android SDK without a phone

Advertisement

Android – Debug Certificate Expired

I haven’t opened the Android projects in my notebook for a long time. Last week when i opened one of the Android project, i found that i could not deploy the app to the simulator and the Eclipse prompt the following error.

  • [2011-02-24 01:23:40 – Notepadv1]Error generating final archive: Debug certificate expired on 10/24/10 1:33 PM!

Continue reading Android – Debug Certificate Expired

Android – Applying Alternate Row Color in ListView with SimpleAdapter

We have talked about how to make a ListView in Android Application using SimpleAdapter.

If you want to add different colors to the background of each row, you can create another adapter which extends the SimpleAdapter and overrides the getView() method. For example, create the SpecialAdapter.java as follow.
Continue reading Android – Applying Alternate Row Color in ListView with SimpleAdapter

Android – Enable small screen resolution of your Android Application

For all Android mobiles, there exists 3 screen sizes:

  • Small: devices with a screen size smaller than the T-Mobile G1 or Samsung I7500, for example the recently announced HTC Tattoo.
  • Normal: devices with a screen size roughly the same as the G1 or I7500.
  • Large: devices with a screen size larger than the G1 or I7500 (such as a tablet-style device.)

Continue reading Android – Enable small screen resolution of your Android Application