在成功地将Eclipse-Android-Project导入到“Android Studio 1.4”后,我得到了错误

"Please select Android SDK"

当我点击按钮在模拟器中运行应用程序时,我找不到任何方法来这样做。

当我点击“run”时,这个对话框就会打开:

这是“项目结构”对话框:

我现在该怎么办?


当前回答

构建开放。gradle文件。只需添加一个空格或按enter键。然后同步项目。它的工作原理……

其他回答

After opening my project in Android Studio, I opened the App version of the build.gradle file, located in the Gradle Scripts folder of the Project. When I hovered my mouse pointer over the buildToolsVersion number, a tooltip popped, indicating that the version of Android Build Tools needed to be upgraded (see screenshot). I changed the value of the buildToolsVersion to the one identified by the error (27.0.2) and the problem was solved. The original error (Please select Android SDK) went away and the project compiled successfully, again. Although this solution was mentioned previously, the exact steps seemed to be missing, so hopefully this clears up any doubt. I guess the root cause for this problem is that a new version of the build tools were released but Android Studio did not trigger any notification to me, which would have indicated that I should manually fix this (since Android Studio does not seeem to have the ability to upgrade this build.gradle file internally), which leaves the onus on the user to find the problem and fix it.

按“Ctrl+shift+A”并在弹出的EditText中写入“Sync Project with Gradle Files”。然后双击出现的选项。然后它将同步您的Gradle文件SDK与项目文件。

在我的情况下,没有选择java sdk版本的项目结构-

我必须选择-

1.源兼容性(1.7)

2.目标兼容性(1.7)

如图所示。

遵循以下步骤:

转到Android Studio设置 使用搜索栏搜索“Android SDK” 确保android sdk文件夹的路径是正确的。 在此之后,还要确保路径在项目(local.properties)文件中的提示符后自动更新。如果没有,请手动操作。

希望这能有所帮助。

我的解决方案 这个虫子快把我逼疯了。再多的同步也无法修复它。我发现如果我修改我的模块的构建。在AndroidStudio中添加gradle(可能会在行后添加一个空行或空格),然后同步该文件,一切都很好。