├── .gitignore ├── .gitlab-ci.yml ├── .npmignore ├── .travis.yml ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── app-settings.json ├── appveyor.yml ├── bin ├── after_plugin_install.js ├── after_prepare.js ├── before_plugin_install.js ├── before_plugin_uninstall.js ├── build-app-settings.js ├── lib │ ├── android.js │ ├── filesystem.js │ ├── ios.js │ ├── mappings.js │ ├── path-parse.js │ └── settings.js ├── package.json ├── spec │ ├── android.spec.js │ ├── helpers │ │ └── common.js │ ├── ios.spec.js │ └── support │ │ └── jasmine.json ├── test-server.js └── travis-emu.sh ├── circle.yml ├── package.json ├── plugin.xml ├── src ├── android │ ├── AppPreferences.java │ ├── AppPreferencesActivity.template │ ├── PreferencesActivity.java │ ├── libs │ │ └── android-support-v4.jar │ └── xml │ │ ├── pref_data_sync.xml │ │ ├── pref_general.xml │ │ ├── pref_headers.xml │ │ └── pref_notification.xml ├── blackberry10 │ └── platform.js ├── browser │ └── platform.js ├── ios │ ├── AppPreferences.h │ └── AppPreferences.m ├── osx │ ├── AppPreferences.h │ └── AppPreferences.m ├── platform-android-emulator.patch ├── test.js ├── test.patch ├── windows8 │ ├── apppreferences.html │ └── platform.js └── wp │ └── AppPreferences.cs └── www ├── apppreferences.js └── task └── AppPreferences.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | app-preferences-app/ 2 | node_modules/ 3 | cordova-lib/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/.travis.yml -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/README.md -------------------------------------------------------------------------------- /app-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/app-settings.json -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/after_plugin_install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/after_plugin_install.js -------------------------------------------------------------------------------- /bin/after_prepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/after_prepare.js -------------------------------------------------------------------------------- /bin/before_plugin_install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/before_plugin_install.js -------------------------------------------------------------------------------- /bin/before_plugin_uninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/before_plugin_uninstall.js -------------------------------------------------------------------------------- /bin/build-app-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/build-app-settings.js -------------------------------------------------------------------------------- /bin/lib/android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/lib/android.js -------------------------------------------------------------------------------- /bin/lib/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/lib/filesystem.js -------------------------------------------------------------------------------- /bin/lib/ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/lib/ios.js -------------------------------------------------------------------------------- /bin/lib/mappings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/lib/mappings.js -------------------------------------------------------------------------------- /bin/lib/path-parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/lib/path-parse.js -------------------------------------------------------------------------------- /bin/lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/lib/settings.js -------------------------------------------------------------------------------- /bin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/package.json -------------------------------------------------------------------------------- /bin/spec/android.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/spec/android.spec.js -------------------------------------------------------------------------------- /bin/spec/helpers/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/spec/helpers/common.js -------------------------------------------------------------------------------- /bin/spec/ios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/spec/ios.spec.js -------------------------------------------------------------------------------- /bin/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/spec/support/jasmine.json -------------------------------------------------------------------------------- /bin/test-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/test-server.js -------------------------------------------------------------------------------- /bin/travis-emu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/bin/travis-emu.sh -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/AppPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/AppPreferences.java -------------------------------------------------------------------------------- /src/android/AppPreferencesActivity.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/AppPreferencesActivity.template -------------------------------------------------------------------------------- /src/android/PreferencesActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/PreferencesActivity.java -------------------------------------------------------------------------------- /src/android/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/libs/android-support-v4.jar -------------------------------------------------------------------------------- /src/android/xml/pref_data_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/xml/pref_data_sync.xml -------------------------------------------------------------------------------- /src/android/xml/pref_general.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/xml/pref_general.xml -------------------------------------------------------------------------------- /src/android/xml/pref_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/xml/pref_headers.xml -------------------------------------------------------------------------------- /src/android/xml/pref_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/android/xml/pref_notification.xml -------------------------------------------------------------------------------- /src/blackberry10/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/blackberry10/platform.js -------------------------------------------------------------------------------- /src/browser/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/browser/platform.js -------------------------------------------------------------------------------- /src/ios/AppPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/ios/AppPreferences.h -------------------------------------------------------------------------------- /src/ios/AppPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/ios/AppPreferences.m -------------------------------------------------------------------------------- /src/osx/AppPreferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/osx/AppPreferences.h -------------------------------------------------------------------------------- /src/osx/AppPreferences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/osx/AppPreferences.m -------------------------------------------------------------------------------- /src/platform-android-emulator.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/platform-android-emulator.patch -------------------------------------------------------------------------------- /src/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/test.js -------------------------------------------------------------------------------- /src/test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/test.patch -------------------------------------------------------------------------------- /src/windows8/apppreferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/windows8/apppreferences.html -------------------------------------------------------------------------------- /src/windows8/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/windows8/platform.js -------------------------------------------------------------------------------- /src/wp/AppPreferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/src/wp/AppPreferences.cs -------------------------------------------------------------------------------- /www/apppreferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/www/apppreferences.js -------------------------------------------------------------------------------- /www/task/AppPreferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apla/me.apla.cordova.app-preferences/HEAD/www/task/AppPreferences.js --------------------------------------------------------------------------------