Friday 22 June 2012

Check WiFi Status - Android Tutorial

This piece of code can get info about the device wifi.

ConnectivityManager conMgr;
NetworkInfo netInfo;
WifiManager wifiMgr;

conMgr = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
netInfo = conMgr.getActiveNetworkInfo();

        if(!(netInfo==null))
        {
            if (wifiMgr.isWifiEnabled())
            {
                //WIFI ENABLED
            }
            else
            {
                //WIFI DISABLED
            }
        }
        else
        {
            //NOT AVAILABLE
        }
       

Saturday 16 June 2012

Major Upgrade for MapMe App

Get it on Google Play We've just release a major upgrade for MapMe application. Basically, this app can perform the following functions:-
1. To locate
2. To navigate


Using your Android device, you can now save your favourite locations in a database. When you run the app, it will first detect your current coordinates. You can then save the coordinates and give it a name.

If you want to navigate to the saved location, select the location from the listing. Using Google Map, it will display a navigator for you.
You can use this app as a car park locator, building locator, street locator or anything that can come to your imagination. This app utilises all the features by Google Map.

You can download this free app from Google Play.




Wednesday 13 June 2012

App for RSS Reader and Movie Showtimes

Get it on Google Play We've just released a new app for RSS reader and movie showtimes. It's now available on Google Play. This Android app allows you to setup your own favourite RRS.

For movie showtimes finder, this app utilise the Google API. You can search for movie showtimes all around the world. Just specify the City, and the app will do the finding for you.


Download this free app here.


Thursday 7 June 2012

Getting App Version Number

This tutorial is to get the application version no. For this purpose we will be using PackageInfo.


     PackageInfo pInfo = null;
     String strVersion;

    try
    {
        pInfo = getPackageManager().getPackageInfo(getPackageName(), 0);
    } catch (NameNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    strVersion = pInfo.versionName;




Sunday 3 June 2012

The Dark Side of SMS Forwarder

Get it on Google Play SMS Forwarder is one of our Android application which has been designed and developed with good faith. This app can automatically forwarded any incoming text message to another mobile no when the app is activated. However, it can be manipulated and misused by irresponsible person to invade someone's privacy. This will happen when you install the app in someone's hand-phone without his/her permission.

The purposes can vary from:-
  • to monitor children text message
  • to catch cheating couple or spouse
  • to monitor suspicious or criminal activity
The intention can be good when you're suspecting your beloved family member is behaving towards any immoral or criminal activities. And this can act as a monitoring or preventive tool before anything worse could happened. It can also become a hard evidence for any denial afterwards. But of course this will piss off the victim.

As the developer, we are not aware of any legal implication of this app in your countries. Furthermore, we do not have the budget to engage any legal advisers on this matter. To prevent any untoward blames or wild accusations on us as the developer, this text message forwarder application has been designed not to be 100% stealth. The user can still notice the incoming activation message that will trigger the application.


This text message forwarder has been developed for free and is available for download at Google Play. We did receive several requests for this app customisation but we will have to consider a few factors. Hope you can use it intelligently.