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

"Please select Android SDK"

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

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

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

我现在该怎么办?


当前回答

现在在Android Studio 3及以上,你可以尝试同步项目与gradle如下:

File -> Sync Project with Gradle Files

其他回答

在我的例子中,我在项目级别build.gradle中有一个依赖项的双重声明。一旦我删除它,做了一个Gradle同步,它工作。

Work for me 1文件>关闭投影。2打开一个现有的Android Studio项目

如果您正在使用'配置文件或调试APK…,那么你可能会遇到这个错误。

我的解决方案是首先在SDK管理器中检查SDK的更新:点击SDK位置右侧的“编辑”,然后安装任何更新:

然后我点击了Android Studio底部的“Logcat”,发现我也需要配置Android SDK,所以选择最新的Android API平台:

在那之后,我能够在模拟器中运行APK。

在本地给出SDK路径。属性文件为

sdk.dir=C\:\\Users\\System43\\AppData\\Local\\Android\\sdk

并在gradle文件中给出compilesdk的最新版本。

Source Compatibility should be selected as the minimum Android Version that your app should be compatible with(usually selected as SDK 15), Target Compatibility should be selected as the newest Android Version that your app should be compatible with(SDK 23). Afterwards you want to check your AndroidMenifest and your gradle.build to see if its realy set to the properties selected if not you can just add it manually. and ofcourse you should check the SDK Location is actually pointing to your android studio SDK folder (if you are importing from Eclipse then you should point to your Eclipse SDK folder).