Bug 1831238 - Update GeckoView to Kotlin 1.8.21 and Gradle Plugin 7.4.2. r=geckoview-reviewers,ohall

Differential Revision: https://phabricator.services.mozilla.com/D177126
This commit is contained in:
Ryan VanderMeulen 2023-05-04 21:39:37 +00:00
parent 3e70138099
commit 23efd9dfab
2 changed files with 4 additions and 4 deletions

View File

@ -110,11 +110,11 @@ buildscript {
}
}
ext.kotlin_version = '1.8.20'
ext.kotlin_version = '1.8.21'
dependencies {
classpath 'org.mozilla.apilint:apilint:0.5.2'
classpath 'com.android.tools.build:gradle:7.4.1'
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'org.apache.commons:commons-exec:1.3'
classpath 'com.diffplug.spotless:spotless-plugin-gradle:6.12.1'
classpath 'org.tomlj:tomlj:1.0.0'

View File

@ -6,8 +6,8 @@ apply plugin: 'java'
// http://googlesamples.github.io/android-custom-lint-rules/api-guide.html#example:samplelintcheckgithubproject/lintversion?
dependencies {
implementation 'com.android.tools.lint:lint:30.4.1'
implementation 'com.android.tools.lint:lint-checks:30.4.1'
implementation 'com.android.tools.lint:lint:30.4.2'
implementation 'com.android.tools.lint:lint-checks:30.4.2'
}
sourceCompatibility = JavaVersion.VERSION_11