Recently I decided to dive into the Android Open Source Project world. This is how I picture my life will be with AOSP:
In order to dig into the AOSP world, I need to get my hands dirty and modify code in the projects. And I am going to do it on three different computers so I need to store my work in remote git repositories. So I need to fork the AOSP manifest in my own github account and work from that.
Say later I try to play with the frameworks project, then I need to fork this project into my own github account as well:
<project path="frameworks/base" name="platform/frameworks/base" groups="pdk-cw-fs,pdk-fs" />
Ideally, when I do a local repo sync, the frameworks/base project will be fetched from my own github account and all other projects will be fetched from google git repo.
Here is what I did in action:
What I want to do is forking the AOSP manifest git repo to my github and work from there. Then I do:
repo sync -u [email protected]:my_own_github_account/platform_manifest.git
Then I do:
repo sync
However I received a lot of error in the console like:
fatal: remote error:
my_own_github_account/platform/external/libopus is not a valid repository name
Email [email protected] for help
It seems repo will assume the projects will come from the same base as the manifest project. I am not sure how to properly do a repo sync with a forked manifest.
Additionally, I am not sure if the way I tried to start work on AOSP is silly or unprofessional. If so I will appreciate it if you can point me to the right way of doing it. Thanks in advance.