So I was wondering if there is a rule against having more than one “uses-permission” block in my app. EX:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET"/>
when I use this in my app, it crashes as soon as i click the button.
NOTE: my button saves a file to the SD card and uploads it to FTP (that’s where i’m stuck – adding the internet part)
any thoughts?
It can be as many uses-permissions in a manifest file as required by an application.