Browse Source

several config changes: app starts again

master
Haslinger Stefan (extern) 2 months ago
parent
commit
9382fc9ef9
  1. 2
      .flutter-plugins-dependencies
  2. 4
      android/app/build.gradle
  3. 1
      android/app/proguard.rules
  4. 1
      android/app/src/main/AndroidManifest.xml
  5. 526
      lib/model/model.g.dart

2
.flutter-plugins-dependencies

File diff suppressed because one or more lines are too long

4
android/app/build.gradle

@ -8,7 +8,7 @@ if (localPropertiesFile.exists()) {
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
throw GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
}
android {
compileSdkVersion 31
compileSdkVersion 33
lintOptions {
disable 'InvalidPackage'

1
android/app/proguard.rules

@ -0,0 +1 @@
-keep class net.sqlcipher.** { *; }

1
android/app/src/main/AndroidManifest.xml

@ -11,6 +11,7 @@
android:icon="@mipmap/launcher_icon">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleInstance"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"

526
lib/model/model.g.dart

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save