Please i noticed the following permissions were added to the AndroidManifest file during build
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
And my application doesn’t require CALL_PHONE neither does it require WRITE_EXTERNAL_STORAGE. During install it shows a red warning notice to user about CALL_PHONE and WRITE_EXTERNAL_STORAGE permission.
I would really love to remove this. I tried editing the manifest file but the changes are overriding during build. Please how can i achieve this?