> > I have a local git repository which I would like to add in > > $ANDROID/external/ folder as a project. So that it get synced from a local > > repository when "repo sync <project name>" command is used. > > I tried adding this in manifest.xml but it dint work. > > Why did that not work?
repo is a utility which uses a manifest.xml file to control its operation. To add repositories to your project, you need to create a local_manifest.xml file in you .repo directory. Here is an example of mine that I used to add the linux kernel tree to my repository. <?xml version="1.0" encoding="UTF-8"?> <manifest> <project path="kernel/samsung" name="kernel/samsung" revision="android-samsung-2.6.35" /> </manifest> -- unsubscribe: [email protected] website: http://groups.google.com/group/android-porting
