Google investor relations
So Google will be competing with the other Android mobile device makers.
The Games tab appeared on my Google+ account 2 days after Google announced it.
So I went ahead to try out Angry Birds which according to Rovio is using HTML 5.
It works pretty well on my laptop. But if you are thinking of running it on iPad or Android devices, sorry it will not work and this is what you will see.
I was trying to enable Wireless AP on my Samsung Galaxy Tab since I upgraded it to Gingerbread last month. I noticed that there is a little bit of changes since my last blog on how to do so (Samsung Galaxy Tab as Wireless Access Point).
It still start by going to Settings and select “Wireless and network”.
Here is where the different starts. Select “Tethering and portable hotspot”.
Select “Portable Wi-Fi hotspot settings”.
Touch the box with the tick to enable the AP function. The tick should turn green.
If this is the first time you are setting up your Galaxy Tab as an AP, you will need to configure the SSID, Security and Password.
Touch Save after the configuration.
You should see a blue box at the top left hand corner if the AP function is enabled.
After waiting for several months, Android Gingerbread upgrade for Samsung Galaxy Tab is finally available in Singapore. I upgraded my Galaxy Tab last week and it was fairly easy via Samsung Kies. The Samsung Kies can be downloaded from the Samsung site.
Connect your Galaxy Tab to the PC running Samsung Kies. Once connected, the latest firmware will be detected.
Click on the Update button to start the upgrade. Samsung Kies will start to download the new firmware. Make sure you do not disconnect the data cable as warned.
Once the upgrade has completed successfully, you will receive the following message and your Galaxy Tab will reboot.
You can go to the About device to verify the version. As shown here, the firmware version is 2.3.3 and the build number is GINGERBREAD.DXJPC. You will probably also notice the subtle difference in the battery icon as shown below.
Have been using the new upgrade for over a week, I do not find any significant difference though.
I have wanted to try out coding Android applications but didn’t have the time to do it. As my master course coming to an end soon, I decided to allocate an hour to setup the Android development environment on my Windows 7 machine.
Since Eclipse is the IDE I have used when I learnt Java 2 years ago, I decided to continue using it. You can download a copy of Eclipse from http://www.eclipse.org/downloads/. I am using the Classic version.
You will also need to have JDK installed and you can get a copy of it from http://www.oracle.com/technetwork/java/javase/downloads/index.html if you do not have one installed.
You can download a copy of the latest Android SDK from http://developer.android.com/sdk/index.html.
After downloading all the above 3 items, here is how I go about installing them.
Oracle/SUN JDK
Installing the Oracle/Sun JDK is as straightforward as just double clicking on the executable, click whatever next buttons and let it run.
Eclipse
Installing Eclipse is also fairly easy. You just need to unzip the downloaded zip file. I have unzipped it to C:\ so eclipse will end up in C:\eclipse.
Android SDK
Installing the Android SDK is quite easy as well except for the misleading “bug”. Run the executable (e.g. installer_r10-windows.exe) downloaded. Click Next on the Welcome screen and it complains that the Java SE Development Kit was not installed. Now I am very sure that it was installed.
Now, click the Back button to go back to the Welcome screen and click the Next button again. Guess what, it found the missing Java SE Development Kit!
Okay, that’s the most “difficult” part to get through. The rest is next, next and install.
Download, Install and Configure ADT Plugin
Next is to download and configure ADT plugin in eclipse. From the Help menu, click on “Install New Software…”.
Click on the “Add…” button.
Enter a name (e.g. ADT Plugin) and enter https://dl-ssl.google.com/android/eclipse/ for the location. Click the OK button.
Select/Check “Developer Tools” and click Next to continue.
On the “Install Details” screen, just click Next.
On the “Review Licenses” screen, accept the license and click Finish.
The installation of the ADT Plugin will start.
After the plugin has been installed, you will need to restart Eclipse. After restarting Eclipse, go to the Window menu and click on Preferences.
On the Preferences screen, select Android on the left pane. Click on the “Browse…” button and navigate to the folder of the Android SDK. Click on the Apply button to load the plugins. Click Ok to confirm.
That’s all for the setup and happy coding.