From 53b1df15dd29a5163b160a362e378cefbb1756e7 Mon Sep 17 00:00:00 2001 From: Janne Koschinski <janne@kuschku.de> Date: Thu, 28 Sep 2017 01:03:36 +0200 Subject: [PATCH] Corrected Export and Names --- app/src/main/AndroidManifest.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 930331580..7eb77f248 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -14,26 +14,26 @@ android:theme="@style/AppTheme"> <activity android:name=".ui.ChatActivity" - android:exported="true" + android:exported="false" android:label="@string/app_name" android:theme="@style/SplashTheme" android:windowSoftInputMode="adjustResize" /> <activity android:name=".ui.setup.accounts.AccountSetupActivity" android:exported="false" - android:label="AccountSetup" + android:label="@string/app_name" android:theme="@style/SplashTheme" android:windowSoftInputMode="adjustResize" /> <activity android:name=".ui.setup.accounts.AccountEditActivity" - android:exported="true" - android:label="AccountEdit" + android:exported="false" + android:label="@string/app_name" android:theme="@style/SplashTheme" android:windowSoftInputMode="adjustResize" /> <activity android:name=".ui.setup.accounts.AccountSelectionActivity" android:exported="true" - android:label="AccountSelection" + android:label="@string/app_name" android:theme="@style/SplashTheme" android:windowSoftInputMode="adjustResize"> <intent-filter> -- GitLab