Добавлена проверка статуса токена, обработка статуса токена

This commit is contained in:
Ivan Murashov
2017-07-18 16:49:47 +03:00
parent fc07eca469
commit ff8ddf4334
12 changed files with 287 additions and 60 deletions

View File

@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dinnect.checker"
package="com.dinect.checker"
android:versionCode="1"
android:versionName="0.0.1">
@@ -18,7 +18,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="checker" android:icon="@mipmap/ic_launcher">
<activity android:name="com.dinnect.checker.activity.MainActivity"
<activity android:name="com.dinect.checker.activity.MainActivity"
android:launchMode="singleTop"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection"
@@ -30,11 +30,11 @@
</intent-filter>
</activity>
<activity android:name="com.dinnect.checker.activity.CameraActivity"
<activity android:name="com.dinect.checker.activity.CameraActivity"
android:theme="@android:style/Theme.Black.NoTitleBar"/>
<service
android:name="com.dinnect.checker.service.RegistrationIntentService"
android:name="com.dinect.checker.service.RegistrationIntentService"
android:exported="false"/>
</application>