您的位置:首页 > 新闻 > 会展 > 免费咨询医生回答在线妇科_web浏览器有哪些软件_做网站推广_软文通

免费咨询医生回答在线妇科_web浏览器有哪些软件_做网站推广_软文通

2025/1/12 0:49:01 来源:https://blog.csdn.net/Dylan_Sen/article/details/143167350  浏览:    关键词:免费咨询医生回答在线妇科_web浏览器有哪些软件_做网站推广_软文通
免费咨询医生回答在线妇科_web浏览器有哪些软件_做网站推广_软文通

Android VNDK

Build system help to check depedencies between modules, build a vendor-specific variant for vendor modules and automatically installs these modules into designed directories.

When the dependencies are invisible to the build system (e.g. shared libraries that may be opened with dlopen() in runtime), you should specify the module names in PRODUCT_PACKAGES to install those modules explicitly.

The Vendor Native Development Kit (VNDK) is a set of libraries used by other libraries or binaries, in the vendor or product partition, on runtime for dlopen.
These libraries are used by the vendor image, on the system image.
在这里插入图片描述

TypeUsed by System imageUsed by Vendor imageInstallExampleComments
CoreYesNoSystem image
cc_library {
name: “libThatIsCore”,

}
Vendor-onlyNoYesVendor image
cc_library { 
name: “libThatIsVendorOnly”
proprietary: true,
# or: vendor: true, # (for things in AOSP)

}
vendor_availableNoYesVendor image
cc_library { 
name: “libThatIsVendorAvailable”,
vendor_available: true,

}
VNDKN/AYesSystem image
cc_library { 
name: “libThatIsVendorAvailable”,
vendor_available: true,
vndk: {
enabled: true,
}

}
When a lib is marked as vendor_available:true, it’s built twice:
Once for platform (and thus installed to /system/lib)
Once for vendor (and thus installed to /vendor/lib or VNDK APEX)
vndk-spYesYesSystem image
cc_library { 
name: “libThatIsVndkSp”,
vendor_available: true,
vndk: {
enabled: true,
support_system_process: true,
}

}
llndkYesYesSystem image
/system/lib[64]
cc_library {
name: “libThatIsLlndk”,
llndk: {
symbol_file: “libthatisllndk.map.txt”
}

}

参考资料:

  • https://source.android.com/docs/core/architecture/vndk/enabling
  • https://source.android.com/docs/core/architecture/vndk

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com