You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/PureAndroidAndJavaConsumeMppLibIT.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -172,7 +172,7 @@ abstract class PureAndroidAndJavaConsumeMppLibIT : BaseGradleIT() {
172
172
gradleBuildScript("Lib").apply {
173
173
writeText(
174
174
// Remove the Kotlin plugin from the consumer project to check how pure-AGP Kotlin-less consumers resolve the dependency
175
-
readText().checkedReplace("apply plugin: 'kotlin-android'", "//").let { text ->
175
+
readText().checkedReplace("id 'org.jetbrains.kotlin.android'", "//").let { text ->
176
176
// If the test case doesn't assume flavors, remove the flavor setup lines:
177
177
if (useFlavors) text else text.lines().filter { !it.trim().startsWith("flavor") }.joinToString("\n")
0 commit comments