Fix build_android_host_app_with_module_source device lab tests (#166077)

Fixes a type error where String was expected but JavaVersion was
inferred.
This commit is contained in:
Ben Konyi
2025-03-27 13:42:48 -04:00
committed by GitHub
parent caa68fc679
commit 16fc684886

View File

@@ -43,7 +43,7 @@ android {
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17
jvmTarget = JavaVersion.VERSION_17.toString()
}
buildFeatures {
compose = true