Add external storage read/write permissions

We need this in order to access files stored on MMC and to write out
(temporary files) before uploading. The latter will be done away with
once we hook up the trancode pipeline to directly provide encoded blocks
rather than writing to a file.
This commit is contained in:
Arun Raghavan 2012-11-11 12:25:40 +05:30
parent e915be9208
commit af9dd0832f

View file

@ -12,6 +12,8 @@
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:name=".CommonsApplication"
@ -53,4 +55,4 @@
</service>
</application>
</manifest>
</manifest>