Skip to content

Commit 179166a

Browse files
committed
update db -> screens functions
1 parent 0307ca8 commit 179166a

22 files changed

Lines changed: 1217 additions & 419 deletions

File tree

android/app/build.gradle

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ if (flutterVersionName == null) {
2323
}
2424

2525
android {
26-
namespace 'com.beforbike.app'
26+
namespace = 'com.beforbike.app'
2727
compileSdk 36
28-
ndkVersion flutter.ndkVersion
28+
ndkVersion = flutter.ndkVersion
2929

3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_21
@@ -54,21 +54,25 @@ android {
5454

5555
buildTypes {
5656
release {
57-
signingConfig signingConfigs.debug
58-
shrinkResources false
59-
minifyEnabled false
57+
signingConfig = signingConfigs.debug
58+
shrinkResources = false
59+
minifyEnabled = false
6060
}
6161
}
6262

6363
buildFeatures {
64-
viewBinding true
65-
dataBinding true
66-
buildConfig true
64+
viewBinding = true
65+
dataBinding = true
66+
buildConfig = true
6767
}
6868

6969
dependenciesInfo {
70-
includeInApk true
71-
includeInBundle true
70+
includeInApk = true
71+
includeInBundle = true
72+
}
73+
74+
lint {
75+
baseline = file("lint-baseline.xml")
7276
}
7377
}
7478

0 commit comments

Comments
 (0)