J-Team

AOSP for GT-I9070 janice/janicep

Follow us onGitHub

How to build

Download Sources

Follow from point 0 to 4 here and then, continue here.

To download the sources:

$ mkdir ~/your_folder 
$ cd ~/your_folder
$ repo init -u git://github.com/J-Team/platform_manifest.git -b kitkat
$ repo sync
To update the changes

$ repo sync
again

Now to build and rebuild you have two ways

Way 1 (simpler and faster):

Build the sources

To build the sources, open the terminal and write this:

$ cd ~/your_folder
$ . build.sh *
Replace * with numbers of cores of your PC+threads (if you have a old computer, thread is 1)

Rebuild

To rebuild the source after some edits, write this in your Terminal:

$ make clobber
$ . build.sh

Way 2:

Build the sources

To build the source type these in Terminal:

$ . build/envsetup.sh
$ lunch full_janice-userdebug
$ make otapackage -j*
Replace * with numbers of cores of your PC+threads (if you have a old computer, thread is 1)

Rebuild

To rebuild the source after some edits, write this in your Terminal:

$ . build/envsetup.sh
$ lunch full_janice-userdebug
$ make clean
$ make otapackage -j*
Replace * with numbers of cores of your PC+threads (if you have a old computer, thread is 1)