Android Studio KMM 项目 c/c++ 模块错误

Android Studio KMM Project with c/c++ module Error

我们正在尝试为 ios 和 android 构建 KMM(Kotlin 多平台移动)应用程序。此项目中包含 c/c++ 模块。 在 iOS 构建中,我们从 .h 文件中收到此错误:

error: use of '@import' when modules are disabled

在 xcode 中,这似乎是一个很容易解决的问题,但在 Android 工作室中,我们找不到解决方案。我认为这是一个 Podfile/.podspec 问题,但我还没有找到任何有效的解决方案。

而不是:

@import MyModule;

试试吧:

#import <MyModule/MyModule.h>