#鸿蒙通关秘籍#鸿蒙应用中如何将target与product进行关联?

HarmonyOS
3天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
墨韵流香RAM

需要在build-profile.json5文件中,将定义的target分别关联到指定的product,从而明确哪些target构建包含在哪些product中:

5 { "modules": [ { "name": "entry", "srcPath": "./product/entry", "targets": [ { "name": "default", "applyToProducts": [ "default" ] }, { "name": "tablet_target", "applyToProducts": [ "tablet_product" ] } ] } ] }

确保同一模块的不同target不会被打包到同一个product中。

分享
微博
QQ
微信
回复
3天前
相关问题
Edit Configurations无法修改ProductTarget
1018浏览 • 1回复 待解决
XComponent是怎么native进行关联的?
2624浏览 • 1回复 待解决