aboutsummaryrefslogtreecommitdiffhomepage
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorMarvin Borner2018-08-17 18:38:53 +0200
committerMarvin Borner2018-08-17 18:38:53 +0200
commit35c5af9d71cbeff5403c32754c4cf8a37399543f (patch)
tree04fdcda3cb33ac6cc98b6ee1ba1f83b2237e516a /app/src/main/AndroidManifest.xml
parente19577b5ebd40c235f933ac54d61f1c6442cd71a (diff)
Added working login verification on app start
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml13
1 files changed, 7 insertions, 6 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 31cb83c..29c7f56 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -10,17 +10,14 @@
<uses-permission android:name="android.permission.INTERNET" />
<application
- tools:replace="android:allowBackup"
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">
- <activity
- android:name=".MainActivity"
- android:label="@string/app_name"
- android:theme="@style/AppTheme.NoActionBar">
+ android:theme="@style/AppTheme"
+ tools:replace="android:allowBackup">
+ <activity android:name=".InitialActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -28,6 +25,10 @@
</intent-filter>
</activity>
<activity
+ android:name=".MainActivity"
+ android:label="@string/app_name"
+ android:theme="@style/AppTheme.NoActionBar"></activity>
+ <activity
android:name=".LoginActivity"
android:label="@string/title_activity_login"></activity>
</application>