在成功地将Eclipse-Android-Project导入到“Android Studio 1.4”后,我得到了错误
"Please select Android SDK"
当我点击按钮在模拟器中运行应用程序时,我找不到任何方法来这样做。
当我点击“run”时,这个对话框就会打开:
这是“项目结构”对话框:
我现在该怎么办?
在成功地将Eclipse-Android-Project导入到“Android Studio 1.4”后,我得到了错误
"Please select Android SDK"
当我点击按钮在模拟器中运行应用程序时,我找不到任何方法来这样做。
当我点击“run”时,这个对话框就会打开:
这是“项目结构”对话框:
我现在该怎么办?
当前回答
如果您正在使用'配置文件或调试APK…,那么你可能会遇到这个错误。
我的解决方案是首先在SDK管理器中检查SDK的更新:点击SDK位置右侧的“编辑”,然后安装任何更新:
然后我点击了Android Studio底部的“Logcat”,发现我也需要配置Android SDK,所以选择最新的Android API平台:
在那之后,我能够在模拟器中运行APK。
其他回答
我也有类似的问题。我尝试与gradle文件同步并删除了。idea文件夹,但没有任何效果。
以下是对我有效的方法:
1)。关闭android工作室 2)。删除c: / / {User} /用户。AndroidStudio {version}文件夹
警告:它会删除你安装的所有插件和设置。 如果没有效果,试试这个方法
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.
这个问题最简单的解决方案是:
首先确保你的sdk路径正确。 然后 请关闭当前项目,并在android启动菜单中单击导入项目,从资源管理器中选择您的项目。 这总能解决我的问题
在我的例子中,我在项目级别build.gradle中有一个依赖项的双重声明。一旦我删除它,做了一个Gradle同步,它工作。
有时android工作室只是愚蠢的行为,需要某种重置..
进入设置。Gradle文件应该包含“:app” 将其更改为包含':ap'和sync。 同步完成后,再次将其更改为包含':app'。
现在应该可以正常工作了。