Using SQLite Database with Visual Data Mapper

If you want to use SQLite database, get data from the database and be able to use Appery.io visual data mapper, this post shows how to do it. It uses a Generic Service to get data from the database.

New Video: Instantly Add Cloud Database to Your App with New Database Integration Feature

New Tutorial: Using Database File API and User Management API

We just published a new step-by-step tutorial on using the File API and User Management. Give it a try and let us know what you think.

Building RSS Mobile App Tutorial

Creating jQuery Mobile App With Appery.io Database API [Tutorial]

As you probably know, we launched Appery.io Database a few weeks ago. In addition to docs, we just published a tutorial on how to build an app connected to Appery.io Database. You will learn:

  • Creating a new Appery.io database, inserting sample data
  • Displaying messages in the app from the database (via REST API)
  • Saving new messages
  • Deleting a message

Eliminating Flickering on Android When Navigating Between Pages

If you run/test your app on Android you probably noticed that there is flickering or jumping when navigating between pages (there is no such issue on iOS). Here is a quick way to get rid of flickering.

Add the following JavaScript (Create New/JavaScript):

$.mobile.defaultPageTransition = 'none';
$.mobile.defaultDialogTransition = 'none';

Above code will be invoked for all devices, including iOS. To run this code only for Android, use this;

if (navigator.userAgent.indexOf("Android") != -1) {
   $.mobile.defaultPageTransition = 'none';
   $.mobile.defaultDialogTransition = 'none';
}

Give it a try, you will notice that page transitations are now much smoother!

Appery.io Video Tutorials

Using Apigee UserGrid API [New tutorial]

New Tutorial: Connecting To And Using Facebook Graph API

It’s been requested, so here it is. A new tutorial on connecting to and using Facebook Graph API when building a mobile app in Appery.io.

New Tutorials On Using StackMob, Parse and ATT mHealth APIs