0.0.3 • Published 6 years ago

cordova-plugin-shared-preferences-creativepro v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Cordova Plugin for Android SharedPreferences

Installation

cordova plugin add cordova-plugin-shared-preferences --save

Usage

document.addEventListener('deviceready', () => {
  const prefs = window.plugins.SharedPreferences
  prefs.getSharedPreferences('shared_preferences', 'MODE_PRIVATE', () => {
    prefs.putString('pref_key', 'some text')

    prefs.getString('pref_key', (value) => {
      alert(value)
    }, (error) => {
      // handle error
    })
  }, (error) => {
    // handle error
  })
}