Why you should use this plugin?
- Cordova + Promise interface out of the box
- Supports many platforms (Android, iOS, Windows and local storage fallback)
- Have tests
- Supports simple and complex data structures
- Supports removal of the keys
- Have preference pane generator for application (for Android and iOS) and can show native preferences
- (Alpha) preference change notification #37
For Cordova 3+
Please note that plugin id is changed for npm publishing, so if you used this plugin before [email protected], you'll have to reinstall it:
$ cordova plugin rm me.apla.cordova.app-preferences
$ cordova plugin add cordova-plugin-app-preferences
From plugin registry:
$ cordova plugin add cordova-plugin-app-preferences
From the repo:
$ cordova plugin add https://github.com/apla/me.apla.cordova.app-preferences
From a local clone:
$ cordova plugin add /path/to/me.apla.cordova.app-preferences/folder
More information: Command-line Interface Guide.
Using Plugman to Manage Plugins.
function ok (value) {}
function fail (error) {}
var prefs = plugins.appPreferences;
// cordova interface
// store key => value pair
prefs.store (ok, fail, 'key', 'value');
// store key => value pair in dict (see notes)
prefs.store (ok, fail, 'dict', 'key', 'value');
// fetch value by key (value will be delivered through "ok" callback)
prefs.fetch (ok, fail, 'key');
// fetch value by key from dict (see notes)
prefs.fetch (ok, fail, 'dict', 'key');
// remove value by key
prefs.remove (ok, fail, 'key');
// show application preferences
prefs.show (ok, fail);
// instead of cordova interface you can use promise interface
// you'll receive promise when you won't pass function reference
// as first and second parameter
// fetch the value for a key using promise
prefs.fetch ('key').then (ok, fail);
// support for iOS suites (untested)
var suitePrefs = prefs.iosSuite ("suiteName");
suitePrefs.fetch (...);
suitePrefs.store (...);
- Native execution on iOS / OSX using
NSUserDefaults
- Native execution on Android using
android.content.SharedPreferences
- Native execution on Windows Phone using
IsolatedStorageSettings.ApplicationSettings
- Native execution on Windows 8 using
IsolatedStorageSettings.ApplicationSettings
- Execution on BlackBerry10 fallback using
localStorage
- iOS, OSX, Android and Windows Phone basic values (
string
,number
,boolean
) are stored using typed fields. - Complex values, such as arrays and objects, are always stored using JSON notation.
- Dictionaries are supported on iOS and Windows 8 only, so on other platforms instead of using the real dictionary a composite key will be written like
<dict>.<key>
- On iOS/OSX dictionaries just a key, so appPrefs.store ('dict', 'key', value) and appPrefs.store ('dict', {'key': value}) have same meaning (but different result).
Tests are available in src/test.js
. After installing plugin you can add test code from this file and then launch testPlugin()
function.
iOS, Android, BlackBerry 10 and Windows Phone 8 tests pass ok at the moment.
If you have generated preferences, you can programmatically show preference pane (Android and iOS at this time). On Android your application show native interface for preferences, on iOS you'll be switched to the Settings.app with application preferences opened for you. Either way, you must listen for Cordova resume event to perform preferences synchronization.
You can find preliminary version of settings generator in bin/build-app-settings.js
.
-
Install the settings generator:
npm install cordova-plugin-app-preferences
-
Copy example settings JSON to your project folder:
cp plugins/cordova-plugin-app-preferences/app-settings.json .
-
Edit JSON to include the controls you need...
-
Generate settings resources with this command:
node plugins/cordova-plugin-app-preferences/bin/build-app-settings.js
-
Add generated Settings.bundle to your iOS project.
Supported controls for iOS:
- group
- combo
- switch
- textfield
Supported controls for Android:
- group
- combo
- switch - not tested
- textfield - not tested
TODO: Windows Phone (guide, docs)
Original version for iOS: https://github.com/phonegap/phonegap-plugins/tree/master/iOS/ApplicationPreferences
Another android implementation for cordova 2.x: https://github.com/macdonst/AppPreferences