Skip to content

TeamGlade/vendor_glade

Repository files navigation

Glade Rom

Installing Repo

# Make a directory where Repo will be stored and add it to the path
$ mkdir ~/bin
$ PATH=~/bin:$PATH

# Download Repo itself
$ curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo

# Make Repo executable
$ chmod a+x ~/bin/repo

Initializing Glade Repos

# Create a directory for the source files
# This can be located anywhere (as long as the fs is case-sensitive)
$ mkdir WORKSPACE
$ cd WORKSPACE

# Install Repo in the created directory
$ repo init -u https://github.com/TeamGlade/android.git -b lp5.0

Downloading Glade Repos

# Start by synchronising the source codes to your local drive
$ repo sync -j#
# = No.of jobs you want
$ For example: repo sync -j8
(*Note:This will consume a lot of network data)