I\'m using phonegap build to create my app.
Is there a way I can configure the permissions asked by android?
For now it asks for all the permissions when I a
A quick bit of googling returns the <feature> element to set permissions. Combined with <preference name="permissions" value="none"/> it should be exactly what you're looking for.
<feature>
<preference name="permissions" value="none"/>
http://docs.phonegap.com/phonegap-build/configuring/#Features