@@ -24,20 +24,20 @@ base {
2424}
2525
2626android {
27- namespace ' io.syslogic.github'
27+ namespace = " io.syslogic.github"
2828 buildToolsVersion = libs. versions. android. build. tools. get()
29- compileSdk Integer . parseInt(libs. versions. android. compile. sdk. get())
29+ compileSdk = Integer . parseInt(libs. versions. android. compile. sdk. get())
3030 defaultConfig {
31- minSdk Integer . parseInt(libs. versions. android. min. sdk. get())
32- targetSdk Integer . parseInt(libs. versions. android. target. sdk. get())
33- versionCode Integer . parseInt(libs. versions. app. version. code. get())
34- versionName libs. versions. app. version. name. get()
35- applicationId ' io.syslogic.github'
31+ minSdk = Integer . parseInt(libs. versions. android. min. sdk. get())
32+ targetSdk = Integer . parseInt(libs. versions. android. target. sdk. get())
33+ versionCode = Integer . parseInt(libs. versions. app. version. code. get())
34+ versionName = libs. versions. app. version. name. get()
35+ applicationId = " io.syslogic.github"
3636 // noinspection GroovyConstructorNamedArguments
3737 manifestPlaceholders = [ accessToken : " " ]
38- testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
39- testBuildType " debug"
40- multiDexEnabled true
38+ testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
39+ testBuildType = " debug"
40+ multiDexEnabled = true
4141 }
4242
4343 room {
@@ -56,8 +56,8 @@ android {
5656 }
5757
5858 buildFeatures {
59- buildConfig true
60- dataBinding true
59+ buildConfig = true
60+ dataBinding = true
6161 }
6262
6363 signingConfigs {
@@ -81,20 +81,19 @@ android {
8181
8282 buildTypes {
8383 debug {
84- applicationIdSuffix " .debug"
85- signingConfig signingConfigs. debug
84+ applicationIdSuffix = " .debug"
85+ signingConfig = signingConfigs. debug
8686 // noinspection GroovyConstructorNamedArguments
8787 manifestPlaceholders = [ accessToken : " ${ accessToken} " ]
88- renderscriptDebuggable true
89- pseudoLocalesEnabled false
90- testCoverageEnabled true
91- shrinkResources false
92- minifyEnabled false
93- jniDebuggable true
94- debuggable true
88+ pseudoLocalesEnabled = false
89+ testCoverageEnabled = true
90+ shrinkResources = false
91+ minifyEnabled = false
92+ jniDebuggable = true
93+ debuggable = true
9594 }
9695 release {
97- signingConfig signingConfigs. release
96+ signingConfig = signingConfigs. release
9897 // noinspection GroovyConstructorNamedArguments
9998 manifestPlaceholders = [ accessToken : " " ]
10099 proguardFile " ${ project.rootDir} /proguard/android.pro"
@@ -103,22 +102,21 @@ android {
103102 proguardFile " ${ project.rootDir} /proguard/window.pro"
104103 proguardFile " ${ project.rootDir} /proguard/mobile.pro"
105104 proguardFile " ${ project.rootDir} /proguard/jgit.pro"
106- renderscriptDebuggable false
107- pseudoLocalesEnabled false
108- testCoverageEnabled false
109- shrinkResources true
110- minifyEnabled true
111- jniDebuggable false
112- debuggable false
105+ pseudoLocalesEnabled = false
106+ testCoverageEnabled = false
107+ shrinkResources = true
108+ minifyEnabled = true
109+ jniDebuggable = false
110+ debuggable = false
113111 }
114112 }
115113
116114 lint {
117- lintConfig project. file(' lint.xml' )
118- checkAllWarnings true
119- warningsAsErrors true
120- abortOnError false
121- showAll false
115+ lintConfig = project. file(' lint.xml' )
116+ checkAllWarnings = true
117+ warningsAsErrors = true
118+ abortOnError = false
119+ showAll = false
122120 }
123121}
124122
0 commit comments