How to sync only Android iroid 2.2 code?

repo init -u https://android.googlesource.com/platform/manifest -b froyo error: revision froyo in manifests not found 

Latest version 2.3 requires a 64-bit build machine, how to get only froyo code?

+4
source share
3 answers

Here is an explanation of what is happening with the froyo branch, and how to solve the problem:

https://groups.google.com/group/android-building/browse_thread/thread/d6c505873a8680a7

If you want to find the appropriate tag to check the exact code branch, try the following:

https://android.googlesource.com/platform/build/+refs

Thus, looking at the list, the branch you should try would look like this: android-2.2.2_r1

+1
source

Try the following: repo init -u https://android.googlesource.com/platform/repo -b froyo

0
source

This worked for me.

 repo init -u https://android.googlesource.com/platform/manifest -b android-2.2_r1.1 

I assume r1.1 is a release branch. can anyone confirm this?

0
source

Source: https://habr.com/ru/post/1337749/


All Articles