GitHub - googlesamples/unity-jar-resolver: Unity plugin which resolves Android & iOS dependencies and performs version management
引入谷歌包时发现有这个玩意,主要用途是自动搜索工程内任意文件夹下的Editor/*Dependencies.xml文件
<dependencies>
<androidPackages>
<androidPackage spec="com.google.android.gms:play-services-ads:[22.3.0]">
<repositories>
<repository>http://maven.aliyun.com/nexus/content/groups/public/</repository>
</repositories>
</androidPackage>
</androidPackages>
<iosPods>
<iosPod name="Google-Mobile-Ads-SDK" version="~> 10.9">
<sources>
<source>https://github.com/CocoaPods/Specs</source>
</sources>
</iosPod>
</iosPods>
</dependencies>
例如上方的<androidPackages>下的每一个<androidPackage>都是一个依赖项implementation
<repositories>指定包来源url 我指定的是镜像url 文章来源:https://www.toymoban.com/news/detail-766291.html
<iosPods>是iOS的也同理,最终会输出到mainTemplate.gradle(前提是你已经勾选了Custom Main Template)选项。文章来源地址https://www.toymoban.com/news/detail-766291.html
到了这里,关于【Unity记录】EDM4U(External Dependency Manager)使用说明的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!