summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2019-04-20 03:56:13 +0200
committerJoe Robinson <joe@lc8n.com>2019-04-20 03:56:13 +0200
commit9d430209d39d0e68f6311adfff9d476c8856f662 (patch)
treef31e91badaafb62825e737e435d55cd89301a9ae /app/src/main/AndroidManifest.xml
Initial commit - working file list view
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..7494ef3
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="uk.co.blatech.blaupload3">
+ <uses-permission android:name="android.permission.INTERNET"/>
+ <application
+ android:allowBackup="true"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:roundIcon="@mipmap/ic_launcher_round"
+ android:supportsRtl="true"
+ android:theme="@style/AppTheme"
+ android:name="uk.co.blatech.blaupload3.util.AppController">
+ <activity
+ android:name=".view.MainActivity"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme.NoActionBar">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN"/>
+
+ <category android:name="android.intent.category.LAUNCHER"/>
+ </intent-filter>
+ </activity>
+
+ </application>
+
+</manifest> \ No newline at end of file