Skip to content

Commit 20b2a13

Browse files
bkonyiyuuangzhang
authored andcommitted
Fix build_android_host_app_with_module_source device lab tests (flutter#166077)
Fixes a type error where String was expected but JavaVersion was inferred.
1 parent 4f852a2 commit 20b2a13

File tree

1 file changed

+1
-1
lines changed
  • dev/integration_tests/pure_android_host_apps/host_app_kotlin_gradle_dsl/app

1 file changed

+1
-1
lines changed

dev/integration_tests/pure_android_host_apps/host_app_kotlin_gradle_dsl/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ android {
4343
targetCompatibility = JavaVersion.VERSION_17
4444
}
4545
kotlinOptions {
46-
jvmTarget = JavaVersion.VERSION_17
46+
jvmTarget = JavaVersion.VERSION_17.toString()
4747
}
4848
buildFeatures {
4949
compose = true

0 commit comments

Comments
 (0)