There hasn’t been too much talk about setting preferences. But following angular practices should get you started. ngCordova is open source, so you can always make a PR and make an angular wrapper for the plugin you select
I’m using the ngCordova preferences plugin. I can’t seem to read existing preferences, but if I set a preference, then read it (both using $cordovaPreferences) it works. It seems like it doesn’t see the settings defined in the plist, and when I set a pref with the same identifier, it doesn’t update the settings viewable from the settings app on the device. Any help would be appreciated.
if that did not solve your problem you would have upload a full app project somewhere / codepen wont work here - then I others might can help you further.
Nice find! Again, In my experience, some of the ngCordova plugins aren’t really worth it because they add only marginal value as opposed to actually using the cordova plugins directly (and in that case it’s crucial to wrap it in the ready() call).
Hi Everyone, I am working on Ionic 2 application. For preferences I wish to use the cordova plugin https://github.com/chrisekelley/AppPreferences/ suggested in one of the answers above. I understand on IOS a plist file will be generated which can be modified from Application Settings in IOS as a means to update settings. How and where can I have a similar page/functionality on android?