Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiedermann IT-Dienstleistungen <info@niedermann.it>2018-10-10 12:06:36 +0300
committerNiedermann IT-Dienstleistungen <info@niedermann.it>2018-10-10 12:06:36 +0300
commit0a27378fee89b495fa2bdf048841ab05df83db02 (patch)
treebef2bbbb450737394728a1acb2626728e0952ef0 /app/src/main/AndroidManifest.xml
parent5b9d36d8e53323150465099eafed0df9d09f1e2e (diff)
Request Auth Token
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 2b9a99f37..15f9d0aa8 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,7 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.niedermann.nextcloud.deck">
+
<uses-permission android:name="com.nextcloud.android.sso"/>
+
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
@@ -9,6 +11,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
+
<activity
android:name=".MainActivity"
android:label="@string/app_name"
@@ -19,10 +22,12 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
+
<activity
android:name=".ui.board.BoardActivity"
android:label="@string/title_activity_board"
android:theme="@style/AppTheme.NoActionBar"></activity>
+
</application>
</manifest> \ No newline at end of file