将 local_manifest.xml 与 repo 结合使用
我使用 repo 下载了 android 源代码。它说 repo 已初始化到一个目录,这就是下载文件夹的位置。现在我有另一个 local_manifest.xml 文件,我想将其与存储库同步一起使用来获取另一个目录。如何使用这个新的清单文件将目录提取到我的存储库?
I downloaded the android sources using repo. It says repo is initialized to a directory and thats where the folders get downloaded. Now I have another local_manifest.xml file which I want to use with repo sync to fetch another directory. How do I use this new manifest file to fetch the directories to my repository?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这样做:
Do this:
如果文件名确实是
local_manifest.xml
,您很可能希望将其添加到您的构建中,而不是仅使用它进行构建。如果是这种情况,则只需将其放入 .repo 中:repo
工具本质上连接manifest.xml
和local_manifest.xml
。有关详细信息,请参阅 http://www.androidenea.com/2010 /06/using-localmanifestxml-file-in-repo-to.html
If the file name is really
local_manifest.xml
, you most probably want to add it to your build instead of building using just it. If that is the case, then simply place it in .repo:The
repo
tool essentially concatenatesmanifest.xml
andlocal_manifest.xml
.For more information, see http://www.androidenea.com/2010/06/using-localmanifestxml-file-in-repo-to.html
Repo 1.9.1 有一个新功能。
您将在
.repo/
下找到一个名为local_manifests
的新文件夹。repo
工具还将跟踪您将添加到此文件夹中的清单文件中的项目。更多信息此处。
Repo 1.9.1 has a new feature.
You'll find a new folder under
.repo/
namedlocal_manifests
.The
repo
tool will follow also the projects in the manifest files you'll add into this folder.More info here.