File tree Expand file tree Collapse file tree 12 files changed +29
-49
lines changed Expand file tree Collapse file tree 12 files changed +29
-49
lines changed Original file line number Diff line number Diff line change 16
16
uses : actions/setup-java@v2
17
17
with :
18
18
distribution : ' zulu'
19
- java-version : ' 8 '
19
+ java-version : ' 11 '
20
20
21
21
- name : Make gradlew executable
22
22
run : chmod +x ./gradlew
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion( appConfig.compileSdkVersion)
8
- buildToolsVersion( appConfig.buildToolsVersion)
7
+ compileSdk = appConfig.compileSdkVersion
8
+ buildToolsVersion = appConfig.buildToolsVersion
9
9
10
10
defaultConfig {
11
11
applicationId = appConfig.applicationId
12
- minSdkVersion( appConfig.minSdkVersion)
13
- targetSdkVersion( appConfig.targetSdkVersion)
12
+ minSdk = appConfig.minSdkVersion
13
+ targetSdk = appConfig.targetSdkVersion
14
14
versionCode = appConfig.versionCode
15
15
versionName = appConfig.versionName
16
16
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ buildscript {
9
9
gradlePluginPortal()
10
10
}
11
11
dependencies {
12
- classpath(" com.android.tools.build:gradle:4.2.2 " )
12
+ classpath(" com.android.tools.build:gradle:7.0.0 " )
13
13
classpath(" org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion " )
14
14
classpath(" com.diffplug.spotless:spotless-plugin-gradle:5.14.2" )
15
15
classpath(" dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.4.0" )
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion( appConfig.compileSdkVersion)
8
- buildToolsVersion( appConfig.buildToolsVersion)
7
+ compileSdk = appConfig.compileSdkVersion
8
+ buildToolsVersion = appConfig.buildToolsVersion
9
9
10
10
defaultConfig {
11
- minSdkVersion(appConfig.minSdkVersion)
12
- targetSdkVersion(appConfig.targetSdkVersion)
13
- versionCode = appConfig.versionCode
14
- versionName = appConfig.versionName
11
+ minSdk = appConfig.minSdkVersion
12
+ targetSdk = appConfig.targetSdkVersion
15
13
16
14
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
17
15
}
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion( appConfig.compileSdkVersion)
8
- buildToolsVersion( appConfig.buildToolsVersion)
7
+ compileSdk = appConfig.compileSdkVersion
8
+ buildToolsVersion = appConfig.buildToolsVersion
9
9
10
10
defaultConfig {
11
- minSdkVersion(appConfig.minSdkVersion)
12
- targetSdkVersion(appConfig.targetSdkVersion)
13
- versionCode = appConfig.versionCode
14
- versionName = appConfig.versionName
11
+ minSdk = appConfig.minSdkVersion
12
+ targetSdk = appConfig.targetSdkVersion
15
13
16
14
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
17
15
}
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion( appConfig.compileSdkVersion)
8
- buildToolsVersion( appConfig.buildToolsVersion)
7
+ compileSdk = appConfig.compileSdkVersion
8
+ buildToolsVersion = appConfig.buildToolsVersion
9
9
10
10
defaultConfig {
11
- minSdkVersion(appConfig.minSdkVersion)
12
- targetSdkVersion(appConfig.targetSdkVersion)
13
- versionCode = appConfig.versionCode
14
- versionName = appConfig.versionName
11
+ minSdk = appConfig.minSdkVersion
12
+ targetSdk = appConfig.targetSdkVersion
15
13
16
14
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
17
15
}
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ plugins {
4
4
}
5
5
6
6
android {
7
- compileSdkVersion( appConfig.compileSdkVersion)
8
- buildToolsVersion( appConfig.buildToolsVersion)
7
+ compileSdk = appConfig.compileSdkVersion
8
+ buildToolsVersion = appConfig.buildToolsVersion
9
9
10
10
defaultConfig {
11
- minSdkVersion(appConfig.minSdkVersion)
12
- targetSdkVersion(appConfig.targetSdkVersion)
13
- versionCode = appConfig.versionCode
14
- versionName = appConfig.versionName
11
+ minSdk = appConfig.minSdkVersion
12
+ targetSdk = appConfig.targetSdkVersion
15
13
16
14
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
17
15
}
Original file line number Diff line number Diff line change @@ -5,14 +5,12 @@ plugins {
5
5
}
6
6
7
7
android {
8
- compileSdkVersion( appConfig.compileSdkVersion)
9
- buildToolsVersion( appConfig.buildToolsVersion)
8
+ compileSdk = appConfig.compileSdkVersion
9
+ buildToolsVersion = appConfig.buildToolsVersion
10
10
11
11
defaultConfig {
12
- minSdkVersion(appConfig.minSdkVersion)
13
- targetSdkVersion(appConfig.targetSdkVersion)
14
- versionCode = appConfig.versionCode
15
- versionName = appConfig.versionName
12
+ minSdk = appConfig.minSdkVersion
13
+ targetSdk = appConfig.targetSdkVersion
16
14
17
15
testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
18
16
}
You can’t perform that action at this time.
0 commit comments