Latest stories

How to store the data in to the SD-card and to delete this stored data when the application is uninstalled in Android

H

For Guidance follow this link store file in to the sdcard use this code private File cacheDir; if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) cacheDir=new File(android.os.Environment.getExternalStorageDirectory(),"/Android/data/YOUR PACKAGE_NAME/files/"); else cacheDir=context.getCacheDir(); if(!cacheDir.exists()) cacheDir.mkdirs(); } If...

How to Integrate the Paypal in Android Application

H

Hi, Everybody know about paypal in real time . and this post may be helpful for you in you want to integrate paypal in your android application for any payment processes. Paypal REleased an API and Library for MObile Integration. You can integrate by using PAYPAL Mobile Libaraies. PayPal Mobile Library => PayPal MerchantSetupAdministrationGuide PayPal sandBOX Document => PayPal MOBILE...

How to resize image programmatically in iPhone

H

Hello friends, many times we need to resize the UIImage runtime according to the need of application.  Here is the function which changes the size of the image and returns a new resized image – (UIImage *)reSizeTheImage:(UIImage *)image convertToSize:(CGSize)size { UIGraphicsBeginImageContext(size); [image drawInRect:CGRectMake(0, 0, size.width, size.height)]; UIImage *destImage =...

Converting Sencha Touch 2 in Android.

C

Requirement  –Android SDK Tools Steps to package your Android application 1-     Obtain an appropriate Android ready certificate (debug or release) for signing the application 2-     Install Sencha SDK Tools (SenchaSDKTools 2.0). 3-     Create a packaging configuration file to be use with the packager. 4-     Run the packager to create a packaged .apk. Create a packaging configuration file...

How to solve “extra qualification” compiler error of symbian 5th SDK

H

Error:extra qualification ‘CAknVolumeControl::’ on member ‘ScaledValue’ Solution: This problem is caused by CAknVolumeControl which is a part of the underlying Symbian SDK. The additional qualifier used on the ScaledValue() function does not compile with the GCCE compiler. This error should be reported to the Symbian Foundation so that they can change it in S60. In the...

Category