当前位置:   article > 正文

【Unity记录】EDM4U(External Dependency Manager)使用说明

external dependency manager

GitHub - googlesamples/unity-jar-resolver: Unity plugin which resolves Android & iOS dependencies and performs version management

引入谷歌包时发现有这个玩意,主要用途是自动搜索工程内任意文件夹下的Editor/*Dependencies.xml文件

  1. <dependencies>
  2. <androidPackages>
  3. <androidPackage spec="com.google.android.gms:play-services-ads:[22.3.0]">
  4. <repositories>
  5. <repository>http://maven.aliyun.com/nexus/content/groups/public/</repository>
  6. </repositories>
  7. </androidPackage>
  8. </androidPackages>
  9. <iosPods>
  10. <iosPod name="Google-Mobile-Ads-SDK" version="~> 10.9">
  11. <sources>
  12. <source>https://github.com/CocoaPods/Specs</source>
  13. </sources>
  14. </iosPod>
  15. </iosPods>
  16. </dependencies>

例如上方的<androidPackages>下的每一个<androidPackage>都是一个依赖项implementation
<repositories>指定包来源url 我指定的是镜像url 

<iosPods>是iOS的也同理,最终会输出到mainTemplate.gradle(前提是你已经勾选了Custom Main Template)选项。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/324556
推荐阅读
相关标签
  

闽ICP备14008679号