[Gradle] Rename KotlinTargetHierarchyBuilder.withAndroid to withAndroidTarget

... by deprecating .withAndroid in favor of 'withAndroidTarget' to
make room for the Google maintained 'Android Target'

^KT-58710 Verification Pending
This commit is contained in:
Sebastian Sellmair
2023-05-16 11:56:51 +02:00
committed by Space Team
parent ff7e4f7986
commit e1d48847dc
4 changed files with 10 additions and 4 deletions
@@ -141,7 +141,10 @@ interface KotlinTargetHierarchyBuilder {
fun withJs()
fun withWasm()
fun withJvm()
@Deprecated("Renamed to 'withAndroidTarget''", replaceWith = ReplaceWith("withAndroidTarget()"))
fun withAndroid()
fun withAndroidTarget()
fun withAndroidNativeX64()
fun withAndroidNativeX86()
fun withAndroidNativeArm32()