当前位置:   article > 正文

Android源码环境切换版本_repo 下载了源码 如何切换android版本

repo 下载了源码 如何切换android版本

一、查看源码情况

1、查看当前版本

2、查看可切换的分支

cd .repo/manifests
git branch -a |cut -d / -f 3
  • 1
  • 2

部分输入如下:

......
android-9.0.0_r22
android-9.0.0_r3
android-9.0.0_r30
android-9.0.0_r31
android-9.0.0_r32
android-9.0.0_r33
android-9.0.0_r34
android-9.0.0_r35
android-9.0.0_r36
......
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

二、选择切换的版本

android-9.0.0_r3版本为例,执行以下命令:

repo init -b android-9.0.0_r3
# 本地是最新代码可以不用同步repo syncrepo start android-9.0.0_r3 --all
# 查看当前的分支   
repo branches
  • 1
  • 2
  • 3
  • 4

三、错误处理

错误一

error: in `start android-9.0.0_r3 --all`: [Errno 2] No such file or directory: 
u'/work/android/aosp/device/google/accessory/arduino/.git/HEAD'error: manifest missing or 
unreadable -- please run init
  • 1
  • 2
  • 3

代码不是最新,输入repo sync解决

错误二

GitError: --force-sync not enabled; cannot overwrite a local work tree. If you're comfortable with the
 possibility of losing the work tree's git metadata, use `repo sync --force-sync device/generic/mini-
 emulator-mips` to proceed.
  • 1
  • 2
  • 3

同步失败,依次输入:

repo sync --force-sync device/generic/mini-emulator-mipsrepo sync
  • 1

参考

问一个:android源代码,如何切换版本。

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

闽ICP备14008679号