summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2014-08-03 03:51:13 +0100
committerJoe Robinson <joe@lc8n.com>2014-08-03 03:51:13 +0100
commit3398c580fd742d785ce5cc90ba2d1c720874fb3f (patch)
tree23268d04efd62f0fb2954c76ecee63dcee7fd464 /app/src/main/AndroidManifest.xml
parent848cfa51b7de694fbcef75b41818b33ed81b7359 (diff)
Created the home screen with a grid of images from blaupload
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index bc2ebf6..2700bb3 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="uk.co.blatech.blaupload" >
-
+ <uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
@@ -14,6 +14,9 @@
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
+ <action android:name="android.intent.action.SEND_MULTIPLE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="image/*" />
</intent-filter>
</activity>
</application>