Last active
December 16, 2015 23:59
-
-
Save romanbb/5517890 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<manifest> | |
<project path="device/htc/m7-common" name="AOKP/device_htc_m7-common" remote="aokp" revision="jb-mr1" /> | |
<project path="device/htc/m7" name="AOKP/device_htc_m7" remote="aokp" revision="jb-mr1" /> | |
<project path="kernel/htc/m7" name="CyanogenMod/android_kernel_htc_m7" remote="cm" revision="cm-10.1" /> | |
</manifest> |
it seems that something is already been added , so what we should do is :
Solution One :
$ repo init -u https://github.com/AOKP/platform_manifest.git -b jb-mr1
$ repo sync
$ . ./platform_manifest/manual_add_kernel_manifest.sh
Solution Two :
$ cd .repo
$ mkdir local_manifests
$ cd local_manifests
$ touch m7.xml
$ gedit m7.xml
then add the content :
Finally :
run the command in the teminal :
$ . build/envsetup.sh && brunch aokp_m7-userdebug
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Updated...