Necessitas applications for Android seem to have three permissions enabled by default:
- Storage
modify/delete SD card contents
- Network communication
full internet access
- Phone calls
read phone state and identity
I want to remove them. I already tried searching in all of my project's files for uses-permission
and I've found and deleted these two lines from AndroidManifest.xml
:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
However, after deleting the lines now my Necessitas app still needs two permissions:
- Storage
modify/delete SD card contents
- Phone calls
read phone state and identity
It seems I've gotten rid of only the network permission. How do I get rid of all three?