Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 android 项目中使用本机库 cUrl,但我担心不同的架构可能会出现问题。我是 NDK 的新手,所以如果你能帮助我解决这个问题,那就太好了。提前致谢
如果您要在 Android 应用程序中包含本机库,则需要为所有可能的架构(如 arm、x86)构建它。如果您不这样做,您的应用程序将无法在您不为其提供构建的设备上运行,并且它们也不会在这些设备的 Google Play 中可见。但是,在这些架构构建中,您是安全的。
Android NDK 提供了所有必要的支持来让您了解这种情况,因此您应该从那里开始阅读。