Difference between revisions of "OS: Android - Build CyanogenMod"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 14: | Line 14: | ||
Download & Extract | Download & Extract | ||
+ | mkdir -p ~/android | ||
wget http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20130729.zip | wget http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20130729.zip | ||
Extrak di | Extrak di | ||
− | + | cp adt-bundle-linux-x86_64-20130729.zip ~ | |
− | cd ~/android/sdk | + | cd ~ |
+ | rm -Rf ~/android/* | ||
+ | unzip adt-bundle-linux-x86_64-20130729.zip | ||
+ | mv adt-bundle-linux-x86_64-20130729/* ~/android | ||
+ | cd ~/android/sdk/tools/ | ||
+ | ./android sdk | ||
− | |||
− | |||
− | + | sudo apt-get install android-tools-adb | |
− | + | sudo apt-get install android-tools-fastboot | |
− | fastboot | ||
Revision as of 16:38, 2 September 2013
sudo apt-get purge openjdk*
sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java6-installer y
sudo apt-get install ia32-libs y
Download & Extract
mkdir -p ~/android wget http://dl.google.com/android/adt/adt-bundle-linux-x86_64-20130729.zip
Extrak di
cp adt-bundle-linux-x86_64-20130729.zip ~ cd ~ rm -Rf ~/android/* unzip adt-bundle-linux-x86_64-20130729.zip mv adt-bundle-linux-x86_64-20130729/* ~/android cd ~/android/sdk/tools/ ./android sdk
sudo apt-get install android-tools-adb sudo apt-get install android-tools-fastboot
sudo apt-get install git-core gnupg flex bison gperf libsdl1.2-dev \ libesd0-dev libwxgtk2.8-dev squashfs-tools build-essential zip curl \ libncurses5-dev zlib1g-dev pngcrush schedtool libxml2 libxml2-utils \ xsltproc g++-multilib lib32z1-dev lib32ncurses5-dev \ lib32readline-gplv2-dev gcc-multilib y
mkdir -p ~/bin mkdir -p ~/android-cyanogen
curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo chmod a+x ~/bin/repo
gedit ~/.bashrc export PATH=${PATH}:~/bin export PATH=${PATH}:~/android/sdk/adt-bundle/sdk/tools export PATH=${PATH}:~/android/sdk/adt-bundle/sdk/platform-tools
cd ~/android-cyanogen/ repo init -u git://github.com/CyanogenMod/android.git -b cm-10.2 repo sync