How to add an image to the “drawable” folder in Android Studio?

For Android Studio 1.5: Right click on res -> new -> Image Asset On Asset type choose Action Bar and Tab Icons Choose the image path Give your image a name in Resource name Next->Finish Update for Android Studio 2.2: Right click on res -> new -> Image Asset On Icon Type choose Action Bar and Tab Icons On Asset type choose Image On Path choose your image path Next->Finish The … Read more

Android SDK location should not contain whitespace, as this cause problems with NDK tools

As the warning message states, the SDK location should not contain whitespace. Your SDK is at C:\Users\Giacomo B\AppData\Local\Android\sdk. There is a whitespace character in Giacomo B. The easiest solution is to move the SDK somewhere else, where there is no space or other whitespace character in the path, such as C:\Android\sdk. You can point both Android Studio installations … Read more

tech