I need to get rid of extract permissions

Monkey Targets Forums/Android/I need to get rid of extract permissions

Boulderdash(Posted 2016) [#1]
I'm working on a project, its coming along..... but I need to get rid of these before I publish to Google Apps:

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.android.vending.BILLING" />

Is there anyway I can remove these ?


therevills(Posted 2016) [#2]
Once you have built your project, go into build\android_new\templates and edit AndroidManifest.xml, remove the permissions you dont need and rebuild.


Boulderdash(Posted 2016) [#3]
Thank you, after I set the file properties to "read only" I was able to get this to work.