diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..abe86c1 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "name": "Flutter", + "image": "matspfeiffer/flutter:beta", + "extensions": ["dart-code.dart-code", "dart-code.flutter"] +} \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d31458..326172f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.3.0 +- Odstranit connectivity_plus +- Přidat možnost oznámení s info o obědu v daný čas +- Přidat k jídelníčku tlačítko, které zobrazí dnešní jídelníček # 1.2.0 - Přidat možnost zobrazení oznámení v případě neobjednaného jídla na příští týden - Přidat oznámení o rozbitých uložených údajích diff --git a/android/app/build.gradle b/android/app/build.gradle index fdd0f6e..6faf358 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -47,12 +47,12 @@ android { } defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "cz.hernikplays.opencanteen" minSdkVersion 18 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName + multiDexEnabled true } signingConfigs { @@ -76,4 +76,6 @@ flutter { dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" + implementation 'com.android.support:multidex:1.0.3' + implementation 'androidx.appcompat:appcompat:1.3.1' } diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 49bb8be..58aa68e 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -15,7 +15,8 @@ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize" - android:screenOrientation="portrait"> + android:screenOrientation="portrait" + android:showWhenLocked="true">