Skip to content

chore(deps): update dependency com.android.tools.build:gradle to v7 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '8'
java-version: '11'

- name: Make gradlew executable
run: chmod +x ./gradlew
Expand Down
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 0 additions & 10 deletions .idea/runConfigurations.xml

This file was deleted.

8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ plugins {
}

android {
compileSdkVersion(appConfig.compileSdkVersion)
buildToolsVersion(appConfig.buildToolsVersion)
compileSdk = appConfig.compileSdkVersion
buildToolsVersion = appConfig.buildToolsVersion

defaultConfig {
applicationId = appConfig.applicationId
minSdkVersion(appConfig.minSdkVersion)
targetSdkVersion(appConfig.targetSdkVersion)
minSdk = appConfig.minSdkVersion
targetSdk = appConfig.targetSdkVersion
versionCode = appConfig.versionCode
versionName = appConfig.versionName

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
gradlePluginPortal()
}
dependencies {
classpath("com.android.tools.build:gradle:4.2.2")
classpath("com.android.tools.build:gradle:7.0.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.diffplug.spotless:spotless-plugin-gradle:5.14.2")
classpath("dev.ahmedmourad.nocopy:nocopy-gradle-plugin:1.4.0")
Expand Down
10 changes: 4 additions & 6 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ plugins {
}

android {
compileSdkVersion(appConfig.compileSdkVersion)
buildToolsVersion(appConfig.buildToolsVersion)
compileSdk = appConfig.compileSdkVersion
buildToolsVersion = appConfig.buildToolsVersion

defaultConfig {
minSdkVersion(appConfig.minSdkVersion)
targetSdkVersion(appConfig.targetSdkVersion)
versionCode = appConfig.versionCode
versionName = appConfig.versionName
minSdk = appConfig.minSdkVersion
targetSdk = appConfig.targetSdkVersion

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
10 changes: 4 additions & 6 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ plugins {
}

android {
compileSdkVersion(appConfig.compileSdkVersion)
buildToolsVersion(appConfig.buildToolsVersion)
compileSdk = appConfig.compileSdkVersion
buildToolsVersion = appConfig.buildToolsVersion

defaultConfig {
minSdkVersion(appConfig.minSdkVersion)
targetSdkVersion(appConfig.targetSdkVersion)
versionCode = appConfig.versionCode
versionName = appConfig.versionName
minSdk = appConfig.minSdkVersion
targetSdk = appConfig.targetSdkVersion

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
10 changes: 4 additions & 6 deletions feature-add/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ plugins {
}

android {
compileSdkVersion(appConfig.compileSdkVersion)
buildToolsVersion(appConfig.buildToolsVersion)
compileSdk = appConfig.compileSdkVersion
buildToolsVersion = appConfig.buildToolsVersion

defaultConfig {
minSdkVersion(appConfig.minSdkVersion)
targetSdkVersion(appConfig.targetSdkVersion)
versionCode = appConfig.versionCode
versionName = appConfig.versionName
minSdk = appConfig.minSdkVersion
targetSdk = appConfig.targetSdkVersion

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
10 changes: 4 additions & 6 deletions feature-main/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ plugins {
}

android {
compileSdkVersion(appConfig.compileSdkVersion)
buildToolsVersion(appConfig.buildToolsVersion)
compileSdk = appConfig.compileSdkVersion
buildToolsVersion = appConfig.buildToolsVersion

defaultConfig {
minSdkVersion(appConfig.minSdkVersion)
targetSdkVersion(appConfig.targetSdkVersion)
versionCode = appConfig.versionCode
versionName = appConfig.versionName
minSdk = appConfig.minSdkVersion
targetSdk = appConfig.targetSdkVersion

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
10 changes: 4 additions & 6 deletions feature-search/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ plugins {
}

android {
compileSdkVersion(appConfig.compileSdkVersion)
buildToolsVersion(appConfig.buildToolsVersion)
compileSdk = appConfig.compileSdkVersion
buildToolsVersion = appConfig.buildToolsVersion

defaultConfig {
minSdkVersion(appConfig.minSdkVersion)
targetSdkVersion(appConfig.targetSdkVersion)
versionCode = appConfig.versionCode
versionName = appConfig.versionName
minSdk = appConfig.minSdkVersion
targetSdk = appConfig.targetSdkVersion

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down