documentation - Where the manifest format of the Android repo tool is explained? -


i use repo command line new project based on many git repositories. not find specification/manual/documentation manifest format.

for example simplified default.xml

<manifest>   <remote  name="aosp" fetch="https://android.googlesource.com" review="android-review.googlesource.com"/>   <remote  name="github" fetch=".." review="review.cyanogenmod.org"/>   <remote  name="private" fetch="ssh://git@github.com"/>   <default revision="refs/tags/1.3-1" remote="github" sync-c="true" sync-j="4"/>   <project path="build" name="cyanogenmod/android_build">     <copyfile src="core/root.mk" dest="makefile"/>   </project>   <project path="android" name="cyanogenmod/android"/>   <project path="abi/cpp" name="cyanogenmod/android_abi_cpp"/> </manifest> 

i found documentations, post them here useful others ;)

  1. enter command repo manifest (from edward falk's comment)
  2. edit file .repo/repo/docs/manifest-format.txt (from bjarke freund-hansen's answer)
  3. go https://gerrit.googlesource.com/git-repo/+/master/docs/manifest-format.txt (from david fraser's comment)

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -