RetroShots for Instagram Review

By

On July 13, 2012

RetroShots for Instagram

By: Lindbergh Apps

Version: 1.4.1

Category: Android

Date:

Price: 0

12345
Loading...

Pain Easer – Acupressure for android Review

By

On February 20, 2012

Pain Easer - Acupressure

By: jeejee

Version: 0.2

Category: Android

Date:

Price: 0

12345
Loading...

Android App Development: Implementing Search activities

By

On July 28, 2011

Most Android phones have a search button. this button is used to search contacts,applications or anything on the phone. We can make use of the search functionality in our apps. In this post we’re going to see how to implement search functionality to search for entries stored in a databaseand display them in a ListView. […]

Selloby for Android Review

By

On July 22, 2011

Selloby

By: Parcsis

Version: 1.1

Category: Android

Date:

Price: 0

12345
Loading...

Optimizing Your Tutorial – How to Introduce Currency in a Virtual Economy

By

On July 19, 2011

You can have 20 million users download you freemium application, but if only 2 of them spend more than 30 seconds in your app you have a problem! This week we will look at the ways currency can be introduced and the best way to introduce users to your games virtual economy. Dad to son: […]

Android App Development: Implementing remote Android Services with AIDL

By

On July 13, 2011

In the last post we saw how to use Android services to do time consuming operations in the background. in this post we will see how can a client application call the methods of a service defined in another application. this is achieved through Android Interface Definition Language (AIDL). AIDL is a java like language […]

Android App Development: Android Services

By

On June 29, 2011

Android Service is used for long-running processes that do not require user interaction, such as calling a web service and parsing response. Or processes that need to be running even if the application that started the service is not on the foreground such as playing mp3 files in a music player. we need to distinguish […]

Android App Development: Parsing Web Service Response part 1

By

On June 15, 2011

In a previous last post we saw how to call REST and SOAP web services. The web service reponse can be one of the following: XML. SOAP. JSON. Parsing XML Android offers three types of XML parsers: DOM Parser. Pull Parser. SAX Parser. we’ll demonstrate each using the following xml example: <?xml version=”1.0″?> <person> <firstname>Jack</firstname> […]

Android vs iOS: A Freemium Game Comparison

By

On May 26, 2011

Matt Tubergen heads Recharge Studios, a wholly owned subsidiary of W3i that invests in the development and marketing/distribution of freemium mobile games.  W3i is a market leader in distributing and monetizing apps with over 500 million apps distributed for W3i clients. Recharge Studios is actively seeking new investment opportunities, if you have a great idea […]

Android App Development: Calling Web Services

By

On May 25, 2011

One of the most common functionalities required in mobile applications is to call a web service to retrieve data. This process involves requesting the web service with parameters, receiving the response and parsing it to obtain data. Today the most common web services types are SOAP and REST. Android does not provide a built in SOAP client, […]