将 local_manifest.xml 与 repo 结合使用

发布于 2024-11-01 16:26:32 字数 139 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迟到的我 2024-11-08 16:26:33

这样做:

cp your_local_mainifest.xml .repo/manifests
repo init -m your_local_manifest.xml
repo sync

Do this:

cp your_local_mainifest.xml .repo/manifests
repo init -m your_local_manifest.xml
repo sync
雨夜星沙 2024-11-08 16:26:33

如果文件名确实是 local_manifest.xml,您很可能希望将其添加到您的构建中,而不是仅使用它进行构建。如果是这种情况,则只需将其放入 .repo 中:

  cp /whereever/local_manifest.xml .repo/local_manifest.xml
  repo sync

repo 工具本质上连接 manifest.xmllocal_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:

  cp /whereever/local_manifest.xml .repo/local_manifest.xml
  repo sync

The repo tool essentially concatenates manifest.xml and local_manifest.xml.

For more information, see http://www.androidenea.com/2010/06/using-localmanifestxml-file-in-repo-to.html

树深时见影 2024-11-08 16:26:32

Repo 1.9.1 有一个新功能。

您将在 .repo/ 下找到一个名为 local_manifests 的新文件夹。

repo 工具还将跟踪您将添加到此文件夹中的清单文件中的项目。

更多信息此处

Repo 1.9.1 has a new feature.

You'll find a new folder under .repo/ named local_manifests.

The repo tool will follow also the projects in the manifest files you'll add into this folder.

More info here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文