mirror of
https://github.com/vanitasvitae/Spherical
synced 2025-12-11 23:01:10 +01:00
Fix NPE, add permission for external storage
This commit is contained in:
parent
179d3b7bd2
commit
a6f93088df
3 changed files with 23 additions and 8 deletions
|
|
@ -2,6 +2,8 @@
|
|||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="de.trac.spherical">
|
||||
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
|
||||
<application
|
||||
android:allowBackup="true"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
|
|
@ -23,6 +25,12 @@
|
|||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
|
||||
<intent-filter>
|
||||
<data android:mimeType="image/*" />
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue