Hello,
*** When I open androidmanifest.xml in appery.io's source, I see this:
uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/uses-permission android:name="android.permission.INTERNET"/uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/
These are the right permissions. I am happy.
*** But If I export to APK, it asks for more permissions when installing, permissions that are unacceptable for security-conscious users and not useful for the app. I am sad.
*** I checked by exporting to Android Studio and opening androidmanifest-xml, these lines are indeed added at the end of the file:
uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/
uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/uses-permission android:name="android.permission.RECORD_AUDIO"/uses-permission android:name="android.permission.READ_PHONE_STATE"/
So 5 extra permissions are added.
*** Android permissions selected are only:
access_network_state
internet
modify_audio_settings
*** Cordova plugins checked are only:
Media
File
Device Orientation
Splashscreen
There is absolutely no good reason for "RECORD AUDIO" or "ACCESS LOCATION" to appear...
Please help! I am not used to android studio so I would prefer for the APK exportation from within appery.io to work well in this situation.