Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android SDK platforms between Linux and Windows

Tags:

I'm dual booting Windows 7 and Ubuntu 12.04 Linux. Can I just copy my existing Android SDK platforms from my windows partition to the linux partition? Or are the platforms different? I don't want to waste time redownloading all the packages again.

like image 779
you786 Avatar asked May 29 '12 01:05

you786


Video Answer


2 Answers

Android SDK is platform-dependent. That is right.

But if you want to spare some space, you can share several folders between the two OS. You can link Windows folders in Linux using something like ln -s /media/Windows/sdk/XXX ./XXX for the following independent platform folders :

  • extras
  • platforms
  • samples
  • sources
  • system-images

Then launch the Android SDK on Linux ./tools/android and check if the packages are available or if some are broken.

like image 96
metch Avatar answered Nov 02 '22 23:11

metch


Android SDK is platform-dependent. Check this: http://developer.android.com/sdk/index.html

like image 29
saurcery Avatar answered Nov 02 '22 23:11

saurcery