Skip to content

A phonegap plugin for getting and setting native preferences.

License

Notifications You must be signed in to change notification settings

chrisekelley/AppPreferences

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Application Preferences plugin for Phonegap

This version supports Cordova 3.x.

Originally by Simon MacDonald (@macdonst), ported to plugman and some other cleanup by Dan Moore (@mooreds). Dan Moore also pulled in the iOS code, written by Tue Topholm / Sugee

Information on writing plugins for PhoneGap 2.0 was taken from this blog by Simon MacDonald (@macdonst)

Install

This plugin uses plugman

cordova plugins add https://github.com/8zrealestate/AppPreferences

Using the plugin

There will be a window.applicationPreferences object defined after the plugin is installed.

The applicationPreferences object created above will be used in the following examples.

get

In order to get the value a property you would call the get method.

/**
  * Get the value of the named property.
  *
  * @param key           
  */
get(key, success, fail)

Sample use:

window.applicationPreferences.get("myKey", function(value) {
		alert("Value is " + value);
	}, function(error) {
		alert("Error! " + JSON.stringify(error));
});

set

In order to set the value a property you would call the set method.

/**
  * Set the value of the named property.
  *
  * @param key
  * @param value           
  */
set(key, value, success, fail)

Sample use:

window.applicationPreferences.set("myKey", "myValue", function() {
		alert("Successfully saved!");
	}, function(error) {
		alert("Error! " + JSON.stringify(error));
});

About

A phonegap plugin for getting and setting native preferences.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 50.2%
  • Objective-C 33.4%
  • JavaScript 16.4%