aboutsummaryrefslogtreecommitdiffhomepage
path: root/android/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorMarvin Borner2018-07-20 18:14:18 +0200
committerMarvin Borner2018-07-20 18:14:18 +0200
commit4263997c3e419ef1cf7447d447c5582a322acf74 (patch)
treed6b5a7c836ba74d1a57f3e6b1a8f372064864c13 /android/app/src/main/AndroidManifest.xml
parent18b8bd888a13c6dadfb7961cc88214332b6f5d38 (diff)
Began basic login screen feature (mvp architecture)
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r--android/app/src/main/AndroidManifest.xml12
1 files changed, 2 insertions, 10 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 1cae011..3018739 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -1,7 +1,4 @@
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="de.beam_messenger.BEAM_Messenger"
- android:versionCode="1"
- android:versionName="0.0.1">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.beam_messenger.beam_messenger" android:versionCode="1" android:versionName="0.0.1">
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
@@ -17,12 +14,7 @@
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application android:name="io.flutter.app.FlutterApplication" android:label="BEAM-Messenger" android:icon="@mipmap/ic_launcher">
- <activity android:name=".MainActivity"
- android:launchMode="singleTop"
- android:theme="@android:style/Theme.Black.NoTitleBar"
- android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection"
- android:hardwareAccelerated="true"
- android:windowSoftInputMode="adjustResize">
+ <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@android:style/Theme.Black.NoTitleBar" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>