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-11-14 21:09:08 +0300
committerNiedermann IT-Dienstleistungen <info@niedermann.it>2018-11-14 21:09:08 +0300
commit8b742ff6c48bb9b15962356411eb5ba98e7be241 (patch)
treeb801f1b5d21293319886969d3a8c89e89dd4a198 /app/src/main/AndroidManifest.xml
parentd38120c7476dc7cb9961fafd7e2ecb70dd31a7ce (diff)
Clean up theme
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml15
1 files changed, 8 insertions, 7 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index ac2cd79c3..92e9fc2c8 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,8 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
package="it.niedermann.nextcloud.deck">
- <uses-permission android:name="com.nextcloud.android.sso"/>
+ <uses-permission android:name="com.nextcloud.android.sso" />
<application
android:allowBackup="true"
@@ -11,14 +12,15 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:hardwareAccelerated="true"
- android:theme="@style/SplashTheme">
+ android:theme="@style/AppTheme"
+ tools:ignore="GoogleAppIndexingWarning">
<activity
android:name=".ui.MainActivity"
- android:label="@string/app_name">
+ android:label="@string/app_name"
+ android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
-
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
@@ -27,12 +29,11 @@
android:resource="@xml/searchable" />
<meta-data
android:name="android.app.default_searchable"
- android:value="it.niedermann.nextcloud.deck.ui.MainActivity" />
+ android:value=".ui.MainActivity" />
</activity>
-
<activity
- android:name="it.niedermann.nextcloud.deck.ui.AboutActivity"
+ android:name=".ui.AboutActivity"
android:label="@string/about"
android:theme="@style/AppTheme"
android:parentActivityName="it.niedermann.nextcloud.deck.ui.MainActivity" />