Android SDK not found - Android Studio

I had a problem with Android 0.4.2 Studio when creating a new application, this indicates a rendering problem and shows me the following problem:

Android SDK rendering problems not found. Please configure Android SDK.

My setup SDK and JDK: Android SDK: C: \ adt-bundle-windows \ sdk, I put the path that I use in the Eclipse SDK, or there may be a problem if someone happened and that was fixed, I would like to give me a solution, thank you very much.

+9
source share
15 answers

I just ran into and solved a similar problem.

You must check the directory first, as described in other threads. You can then check to see if the build tool version matches your SDK version.

(for example, for my project in the build.gradle file you have :)

android {compileSdkVersion 21 buildToolsVersion "21.1.1"}

and then open the SDK manager, make sure that the selected sdk version (21.1.1) has the selected directive installed:

If not, install it and restart Android Studio. It works for me.

I also saw that other guys say that launch Android Studio, since the administrator will also help:

https://teamtreehouse.com/forum/i-am-getting-this-warning-message-rendering-problems-no-android-sdk-found-please-configure-an-android-sdk

+3
source

From the File menu, select Project Structure (if you are using 0.4.4, there is an error and the menu item does not have a name, but it still works) and select the Android SDK item. You should see something like this where you can configure your JDK and SDK.

Project Structure dialog, Android SDK tab

After setting, close Android Studio and restart it.

+2
source

I got the error message โ€œNo Android SDK Foundโ€ ... plus the lack of rendering for the Design window, without a cell phone screen.

My path to the SDK was correct, indicating where the SDK lives (downloaded during installation).

During the installation of the Mgr SDK, I did not download the latest version of the preview (version 20) "... (I thought it was better to use the next most recent version (19)). Later I found that there was not a single drop-down option in the AVD Manager to select version 19, only the default value for preview, 20.

I thought: "Maybe the rendering was based on a version that has not yet appeared." So, I downloaded all the "preliminary versions (version 20)" SDK Platform (2) and system images (4) ...

Once the download / installation is complete, RESTARTED Android Studio and viola! success ... error message disappeared, rendering ok.

+2
source

I just discovered that Androidroid 3.0.1 does not have sdk during installation. because during installation it does not give sdk as part of the installation option, unlike the latest versions of Android-studio.

+2
source

Don't worry just change

build.gradle ext.kotlin_version = '1.2.41' 

to the previous version. It worked for me, hope it works for you too. Good coding.

+2
source

According to the Android Studio download page , the SDK comes bundled with Android Studio. It has its own copy when installing Android Studio.

ADT is a plugin for Eclipse. Try reading this web page to see if there is anything that was missing during installation.

Here is the wording from the site regarding ADT:

Like Eclipse with the ADT plugin, Android Studio provides integrated Android development tools for development and debugging.

+1
source

Follow these steps

a) Change minSdkVersion and synchronize Gradle

b) Get back your minSdkVersion and sync gradle again

This will be resolved.

+1
source

Here is the solution, just copy the SDK Manager.exe file to the root installation folder of your Android studio, synchronize your project and welcome ... here is the link for details. running Android Studio on Windows 7, Android SDK not found

0
source

Try to create a new project, and then select the same version for Android on which sdk versions were installed in the "Target Android Device" dialog box. In my case, the error message disappeared.

0
source

I had the same problem, Android Studio just could not determine the android-sdk folder. All I did was remove and reinstall the android studio, and this time it really identified the folder. Hope this works for you too.

0
source

Download sdk for Android through this sdk manager https://dl.google.com/android/repository/tools_r25.2.3-macosx.zip (note that this link is for mac) open android studio, click on, open on there where she will ask you to add the path where u downloaded sdk ..... add it ... click on, it will update downloaad ..... and he did

0
source

Currently the latest version of Android Studio included in the package (Windows IDE with SDK (64-bit)) with Android SDK, version 2.3.3 :

https://developer.android.com/studio/archive.html#android-studio-2-3-3

which is about 2 GB in size.

You can use it and then upgrade to the latest version of Android Studio.

0
source

I wanted to share part of the problem that I had, because this is Googleโ€™s first result.

I installed Android Studio, when I tried to install my first SDK from the SDK control windows, I received an error message that I did not have any SDKs installed. I tried to search the Internet to manually download a ZIP file, manually create a folder, no luck, that is always the case.

When I tried to run Android Studio as an administrator, he found that I did not have an SDK, and immediately upon launch suggested to download the SDK.

0
source

These days, installing Android Studio does not provide an SDK as part of the original package.

In the Windows context, when you start Android Studio 1.3.1, you will see an error message stating that the SDK was not found. You just need to continue and indicate the path where you can download the SDK. And you did.

enter image description here

0
source

I'm on Mac Os. In my case, my host file was black. I added the following entries (these entries should be the default, but there were none).

 ## # Host Database # # localhost is used to configure the loopback interface # when the system is booting. Do not change this entry. ## 127.0.0.1 localhost 255.255.255.255 broadcasthost ::1 localhost 

After restarting Android Studio, he suggested downloading the SDK.

0
source

All Articles