gpt4 book ai didi

android - Kotlin 多平台配置问题

转载 作者:行者123 更新时间:2023-12-03 13:26:02 26 4
gpt4 key购买 nike

我在我的 KMP + Jetpack Compose 项目中继续收到 Gradle 配置错误
配置项目 ':shared' 时出现问题。

Configuration with name 'testApi' not found.


我的设置是:
  • Android Studio 北极狐 2020.3.1 金丝雀 3
  • 项目级设置
  • dependencies {
    classpath("com.android.tools.build:gradle:7.0.0-alpha03")
    classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.20")
    }
  • '共享模块'
  • import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget

    plugins {
    kotlin("multiplatform")
    id("com.android.library")
    }

    kotlin {
    android()
    ios {
    binaries {
    framework {
    baseName = "shared"
    }
    }
    }
    sourceSets {
    val commonMain by getting
    val commonTest by getting {
    dependencies {
    implementation(kotlin("test-common"))
    implementation(kotlin("test-annotations-common"))
    }
    }
    val androidMain by getting {
    dependencies {
    implementation("com.google.android.material:material:1.2.1")
    }
    }
    val androidTest by getting {
    dependencies {
    implementation(kotlin("test-junit"))
    implementation("junit:junit:4.13.1")
    }
    }
    val iosMain by getting
    val iosTest by getting
    }
    }

    android {
    compileSdkVersion(30)
    sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
    defaultConfig {
    minSdkVersion(21)
    targetSdkVersion(30)
    }
    }

    val packForXcode by tasks.creating(Sync::class) {
    group = "build"
    val mode = System.getenv("CONFIGURATION") ?: "DEBUG"
    val sdkName = System.getenv("SDK_NAME") ?: "iphonesimulator"
    val targetName = "ios" + if (sdkName.startsWith("iphoneos")) "Arm64" else "X64"
    val framework = kotlin.targets.getByName<KotlinNativeTarget>(targetName).binaries.getFramework(mode)
    inputs.property("mode", mode)
    dependsOn(framework.linkTask)
    val targetDir = File(buildDir, "xcode-frameworks")
    from({ framework.outputDirectory })
    into(targetDir)
    }

    tasks.getByName("build").dependsOn(packForXcode)
    笔记:
    通过部分删除配置,我似乎弄清楚了 w
    问题似乎与android配置本身有关,
    所以如果我从中删除 android() 部分
    kotlin {
    android()
    ....

    只需使用简单的 jvm() 就可以了

    最佳答案

    您可以在共享模块 Gradle 文件中使用以下代码作为解决方法

    android {
    configurations {
    create("androidTestApi")
    create("androidTestDebugApi")
    create("androidTestReleaseApi")
    create("testApi")
    create("testDebugApi")
    create("testReleaseApi")
    }
    }
    注意 : 这必须放在 kotlin {} block 之前

    关于android - Kotlin 多平台配置问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65372825/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com