We hear you! Camangi Technical support provides you a way of communication to us. Please leave your commons or any questions on Camangi market forum, and we will choose one issue each time as "Today's topic".
July 26 2010
Today’s topic:
How to upload your professional applications on Camangi Market?
August 09 2010
Today’s topic:
How to modify my APK from mobile to tablet version easily?
Here we issue a frequent case might happen when we try to develop the apk without resolution problem.
Case: Unusual UI display may happen when an application runs on specific screen size and resolutions. Please see the illustration as below.

Why? It might because the SDK version that you develop for your APK is Android 1.5 or older version. The Android 1.5 was designed for single screen size, and the resolution is HVGA 320x480 on 3.2" screen. However, the Android 1.6 and above is not in the case since Android 1.6 supports a range of screen sizes and resolutions for Android application development, which means it gives developers a little control over applications. With the variety screen sizes and resolutions, you just have to simply choose the desire screen size and resolution for your APK in other words your application will definitely fits the screen size with appropriate resolution you would likely to show.
How to do it?
Key Point: Upgrade your Android 1.5 to 1.6.
Steps:
Notice: android:minSdkVersion="3" means the minimum requirement of SDK is 1.5, that is, you can still install the application on Android 1.5 devices. Of course, you have to ensure that your program code don’t have the API only support after Android 1.6 version or the API forbidden by Android 1.6.
For more information Please refer to http://developer.android.com/intl/zh-TW/guide/practices/screens_support.html
August 23 2010
Today’s topic:
Define your application version before publish it on Camangi Market.
Before publishing your application to Camangi Market, please make sure you have defined the following properties in the application's Manifest file.
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.package_name" android:versionCode="1" android:versionName="1.0"> . . . </manifest>
Property Description:

An application’s version info illustration
September 06 2010
Today’s topic:
How to create an emulator for Android Tablet?


For more information Please refer to: http://developer.android.com/guide/developing/tools/avd.html