无法使用XCode将带有Cocoapods的Kotlin Native存档

问题描述

我尝试在XCode 12中归档一个引用带有cocoapods插件的Kotlin Native框架的项目,但是它失败,并显示如下消息(使用iPhone SE建立归档文件

Ignoring file *MyFramework*,building for iOS-armv7 but attempting to link with file built for iOS-arm64

Undefined symbol: _OBJC_CLASS_$_... (for armv7)

我在项目的Podfile中将我的框架作为本地pod引用(使用:path:modular_headers => true

据我了解,我必须构建一个既包含armv7也包含arm64的胖框架,但是如何使用Kotlin cocoapods插件来管理它呢?


这里有一些建议的链接,但是我无法将其合并在一起

https://github.com/ilmat192/kotlin-native-gradle-samples/blob/master/fat-framework/build.gradle.kts

https://github.com/JetBrains/kotlin-native/issues/3140

https://medium.com/@yuyaHorita/universal-frameworks-xcframework-with-kotlinnative-999d830e206e

https://github.com/JetBrains/kotlin-native/issues/2574

https://github.com/ilmat192/kotlin-native-gradle-samples/blob/master/fat-framework/build.gradle.kts


项目的build.gradle

buildscript {

    ext.kotlinVersion = '1.4.20-M2'
    // use 1.3.7 to avoid iOS build error
    // "Deserializer for declaration public kotlinx.coroutines/SingleThreaddispatcher|null[0] is not found"
    ext.coroutinesVersion = '1.3.7'
    ext.ktorVersion = '1.4.1'
    ext.napierVersion = '1.4.0'

    repositories {
        google()
        jcenter()
        maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.0'
    }
}
repositories {
    google()
    jcenter()
}

分子的build.gradle

plugins {
    id 'org.jetbrains.kotlin.multiplatform' version "$kotlinVersion"
    id "org.jetbrains.kotlin.native.cocoapods" version "$kotlinVersion"
    id "org.jetbrains.kotlin.plugin.serialization" version "$kotlinVersion"
}
repositories {
    google()
    jcenter()
    mavenCentral()
    maven { url "https://dl.bintray.com/aakira/maven" }
    maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId 'org.jetbrains.kotlin.mpp_app_android'
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName '1.0'
        testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
    }
    buildTypes {
        release {
            minifyEnabled false
        }
    }
}

dependencies {
    implementation filetree(dir: 'libs',include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:2.0.2'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
}

kotlin {
    android("android")

    targets {
        final def iOSTarget = System.getenv('SDK_NAME')?.startsWith("iphoneos")  \
         ? presets.iosArm64 : presets.iosX64

        // https://kotlinlang.org/docs/reference/mpp-dsl-reference.html#native-targets
        fromPreset(iOSTarget,'ios') {
            binaries {
            }
        }
    }

    // CocoaPods requires the podspec to have a version.
    version = "1.0"

    cocoapods {
        // Configure fields required by CocoaPods.
        def projectName = project.getRootProject().getName()

        summary = projectName
        homepage = "https://ya.ru"
        ios.deploymentTarget = "9.0"

        frameworkName = projectName

        pod("NVHTarGzip")
    }

    sourceSets {
        commonMain {
            dependencies {
                implementation kotlin('stdlib')

                implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.0")
                implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime-common:0.9.1")

                // Coroutines components
                implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
                // workaround https://youtrack.jetbrains.com/issue/KT-41378
                implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.9-native-mt-2")

                // Ktor components
                implementation("io.ktor:ktor-client-core:$ktorVersion")
                implementation("io.ktor:ktor-network:$ktorVersion")

                // workaround https://github.com/AAkira/Napier/issues/48
                implementation "com.github.aakira:napier:1.4.1-alpha1"
            }
        }
        commonTest {
            dependencies {
                implementation kotlin('test-common')
                implementation kotlin('test-annotations-common')
            }
        }
        androidMain {
            dependencies {
                // Ktor components
                implementation("io.ktor:ktor-client-android:$ktorVersion")
            }
        }
        androidTest {
            dependencies {
                implementation kotlin('test')
                implementation kotlin('test-junit')
            }
        }
        iosMain {
            dependencies {
                implementation("org.jetbrains.kotlinx:kotlinx-serialization-runtime-native:0.9.1")

                // Ktor components
                implementation("io.ktor:ktor-client-ios:$ktorVersion")
            }
        }
        iosTest {
        }
    }
}

解决方

实际上不是真正的解决方案-基于已接受的答案,我刚刚放弃了armv7支持,将其添加Excluded Architectures

解决方法

building for iOS-armv7 but attempting to link with file built for iOS-arm64

看起来您正在尝试为armv7(我认为)是32位ios或可能是观看的设备进行存档。大多数应用仅需要arm64,因此您的Xcode框架将仅为arm64:>

final def iOSTarget = System.getenv('SDK_NAME')?.startsWith("iphoneos")  \
         ? presets.iosArm64 : presets.iosX64

如果仅需要arm64,并且它只是一个iOS应用程序,则似乎可以在构建中禁用armv7体系结构。或者,您可以尝试组合的ios()目标。

我们在这里有一个实用的示例:https://github.com/touchlab/KaMPKit

它使用了cocoapods插件的分支,但是除了isStatic之外,它基本上是相同的插件。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...