| /* |
| * Copyright 2018 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| |
| import androidx.build.KmpPlatformsKt |
| import androidx.build.LibraryType |
| import org.jetbrains.kotlin.gradle.plugin.KotlinPlatformType |
| import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget |
| import org.jetbrains.kotlin.gradle.tasks.KotlinNativeCompile |
| import org.jetbrains.kotlin.konan.target.Family |
| |
| plugins { |
| id("AndroidXPlugin") |
| } |
| |
| def macEnabled = KmpPlatformsKt.enableMac(project) |
| def linuxEnabled = KmpPlatformsKt.enableLinux(project) |
| |
| androidXMultiplatform { |
| jvm { |
| withJava() |
| } |
| mac() |
| linux() |
| ios() |
| |
| sourceSets { |
| all { |
| languageSettings.optIn("kotlin.RequiresOptIn") |
| languageSettings.optIn("kotlin.contracts.ExperimentalContracts") |
| } |
| |
| commonMain { |
| dependencies { |
| api(libs.kotlinStdlib) |
| } |
| } |
| |
| commonTest { |
| dependencies { |
| implementation(libs.kotlinTest) |
| implementation(libs.kotlinTestAnnotationsCommon) |
| implementation(libs.kotlinCoroutinesCore) |
| } |
| } |
| |
| jvmMain { |
| dependencies { |
| api("androidx.annotation:annotation:1.3.0") |
| } |
| } |
| |
| jvmTest { |
| dependencies { |
| implementation(libs.kotlinTestJunit) |
| implementation(libs.truth) |
| implementation(project(":internal-testutils-truth")) |
| } |
| } |
| |
| if (macEnabled || linuxEnabled) { |
| nativeMain { |
| dependsOn(commonMain) |
| } |
| |
| nativeTest { |
| dependsOn(commonTest) |
| } |
| } |
| |
| if (macEnabled) { |
| darwinMain { |
| dependsOn(nativeMain) |
| } |
| } |
| |
| if (linuxEnabled) { |
| linuxMain { |
| dependsOn(nativeMain) |
| } |
| } |
| |
| targets.withType(KotlinNativeTarget.class) { |
| binaries.all { |
| binaryOptions["memoryModel"] = "experimental" |
| } |
| } |
| |
| targets.all { target -> |
| if (target.platformType == KotlinPlatformType.native) { |
| target.compilations["main"].defaultSourceSet { |
| def konanTargetFamily = target.konanTarget.family |
| if (konanTargetFamily == Family.OSX || konanTargetFamily == Family.IOS) { |
| dependsOn(darwinMain) |
| } else if (konanTargetFamily == Family.LINUX) { |
| dependsOn(linuxMain) |
| } else { |
| throw new GradleException("unknown native target ${target}") |
| } |
| } |
| |
| target.compilations["test"].defaultSourceSet { |
| dependsOn(nativeTest) |
| } |
| } |
| } |
| |
| // Workaround for https://youtrack.jetbrains.com/issue/KT-51763 |
| // Make sure commonization runs before any compilation task. |
| tasks.withType(KotlinNativeCompile).configureEach { |
| it.dependsOn(tasks.named("commonize")) |
| } |
| } |
| } |
| |
| dependencies { |
| // Required for users who only depend on this artifact, but pull an older version of |
| // collection-ktx transitively, which would lead to duplicate definition since the -ktx |
| // extensions were moved into the main artifact. |
| constraints { |
| jvmImplementation("androidx.collection:collection-ktx:1.3.0-alpha01") |
| } |
| } |
| |
| androidx { |
| name = "Android Support Library collections" |
| type = LibraryType.PUBLISHED_LIBRARY |
| inceptionYear = "2018" |
| description = "Standalone efficient collections." |
| } |