Enable hash verification for metalava builds
Generated with:
gradle --write-verification-metadata sha256 --export-keys
Test: ./gradlew -> passes
Change-Id: I6988a1ae8aacc93c885d0741b584a01099c0a25c
diff --git a/build.gradle.kts b/build.gradle.kts
index 836cc85..3975634 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -31,7 +31,7 @@
}
plugins {
- kotlin("jvm") version "1.5.21"
+ kotlin("jvm") version "1.5.31"
id("application")
id("java")
id("maven-publish")
@@ -69,7 +69,7 @@
} else {
"30.1.0-alpha01"
}
-val kotlinVersion: String = "1.5.21"
+val kotlinVersion: String = "1.5.31"
dependencies {
implementation("com.android.tools.external.org-jetbrains:uast:$studioVersion")
@@ -86,9 +86,10 @@
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion")
implementation("org.ow2.asm:asm:8.0")
implementation("org.ow2.asm:asm-tree:8.0")
+ implementation("com.google.guava:guava:30.1.1-jre")
testImplementation("com.android.tools.lint:lint-tests:$studioVersion")
- testImplementation("junit:junit:4.11")
- testImplementation("com.google.truth:truth:1.0")
+ testImplementation("junit:junit:4.12")
+ testImplementation("com.google.truth:truth:1.1.3")
testImplementation("org.jetbrains.kotlin:kotlin-test:$kotlinVersion")
}