Skip to content Skip to sidebar Skip to footer

Android Permissions In Cordova 4.0 Config.xml

I used Cordova 4.0 to create a phonegap app (that has worked fine via cli on iOS), but I also want to use build.phonegap.com particularly for Android. The main issue is that upon i

Solution 1:

config.xml , is just a bunch of information. It is not executed sequentially. so if you mention you require DisallowOverscroll permission and then mention you dont require any permission, it means ,

<preferencename="permissions"value="none" />

will not overWrite

<preferencename="DisallowOverscroll"value="true" />

for example:

<preferencename="DisallowOverscroll"value="true" /><preferencename="permissions"value="none" />

and

<preferencename="DisallowOverscroll"value="true" /><preferencename="permissions"value="none" />

both are same.

Post a Comment for "Android Permissions In Cordova 4.0 Config.xml"