@@ -7,48 +7,48 @@ apply from: '../version.gradle'
77def disabledColor = 0xADADAD
88
99android {
10- namespace ' pl.selvin.android.listsyncsample'
11- compileSdk 34
10+ namespace = ' pl.selvin.android.listsyncsample'
11+ compileSdk = 35
1212
1313 flavorDimensions = [" db_impl" ]
1414
1515 defaultConfig {
1616 applicationId ' pl.selvin.android.listsyncsample'
1717 minSdkVersion 22
18- targetSdkVersion 34
18+ targetSdkVersion 35
1919 versionCode sync_framework_version_int
2020 versionName sync_framework_version
2121 }
2222
2323 signingConfigs {
2424 release {
25- keyAlias ' androiddebugkey'
26- keyPassword ' android'
27- storeFile file(' debug.keystore' )
28- storePassword ' android'
25+ keyAlias = ' androiddebugkey'
26+ keyPassword = ' android'
27+ storeFile = file(' debug.keystore' )
28+ storePassword = ' android'
2929 }
3030 }
3131
3232 buildTypes {
3333 release {
34- shrinkResources true
35- minifyEnabled true
34+ shrinkResources = true
35+ minifyEnabled = true
3636 proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
37- signingConfig signingConfigs. release
37+ signingConfig = signingConfigs. release
3838 }
3939
4040 debug {
41- versionNameSuffix " (deb)"
41+ versionNameSuffix = " (deb)"
4242 }
4343 }
4444
4545 compileOptions {
46- sourceCompatibility JavaVersion . VERSION_1_8
47- targetCompatibility JavaVersion . VERSION_1_8
46+ sourceCompatibility = JavaVersion . VERSION_1_8
47+ targetCompatibility = JavaVersion . VERSION_1_8
4848 }
4949 buildFeatures {
50- aidl true
51- buildConfig true
50+ aidl = true
51+ buildConfig = true
5252 }
5353
5454 android. applicationVariants. configureEach { variant ->
0 commit comments