[Gradle] Fix deprecation warnings in AndroidBaseSourceSetName

^KT-56904 In Progress
This commit is contained in:
Yahor Berdnikau
2023-12-11 20:37:36 +01:00
committed by Space Team
parent b458d69689
commit 4a7f12a8eb
@@ -5,16 +5,19 @@
package org.jetbrains.kotlin.gradle.plugin.sources.android
import com.android.build.gradle.api.AndroidSourceSet
import org.gradle.api.NamedDomainObjectContainer
import org.jetbrains.kotlin.gradle.utils.*
internal val NamedDomainObjectContainer<out AndroidSourceSet>.main: AndroidSourceSet
@Suppress("TYPEALIAS_EXPANSION_DEPRECATION")
internal val NamedDomainObjectContainer<out DeprecatedAndroidSourceSet>.main: DeprecatedAndroidSourceSet
get() = getByName(AndroidBaseSourceSetName.Main.name)
internal val NamedDomainObjectContainer<out AndroidSourceSet>.test: AndroidSourceSet
@Suppress("TYPEALIAS_EXPANSION_DEPRECATION")
internal val NamedDomainObjectContainer<out DeprecatedAndroidSourceSet>.test: DeprecatedAndroidSourceSet
get() = getByName(AndroidBaseSourceSetName.Test.name)
internal val NamedDomainObjectContainer<out AndroidSourceSet>.androidTest: AndroidSourceSet
@Suppress("TYPEALIAS_EXPANSION_DEPRECATION")
internal val NamedDomainObjectContainer<out DeprecatedAndroidSourceSet>.androidTest: DeprecatedAndroidSourceSet
get() = getByName(AndroidBaseSourceSetName.AndroidTest.name)
/*