我正在尝试启动我的第一个Android Studio应用,并在尝试运行或调试时反复遇到相同的错误。我正在使用Spotify API构建音乐应用程序,并将压缩的jar文件导入正确的目录(在我的应用程序的libs下)。
似乎问题是我的SDK文件夹可能在另一个驱动器中?我不这么认为,但这是我能想到的唯一一件事。我甚至移动了我的Android Studio文件夹并尝试从同一个D:驱动器运行它,但没有任何区别。
我还安装了所有相应的SDK。 SDK工具,平台工具,SDK构建工具19.1,20,API 19,20,Android支持存储库,库,Google Play服务,存储库,USB驱动程序和英特尔模拟器。
这是我得到的错误:
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:dexDebug'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
D:\adt-bundle-windows-x86_64-20140702(2)\adt-bundle-windows-x86_64-20140702\sdk\build-tools\19.1.0\dx.bat --dex --output C:\Users\Jesse\AndroidStudioProjects\SubRosa\app\build\intermediates\dex\debug C:\Users\Jesse\AndroidStudioProjects\SubRosa\app\build\intermediates\classes\debug C:\Users\Jesse\AndroidStudioProjects\SubRosa\app\build\intermediates\dependency-cache\debug C:\Users\Jesse\AndroidStudioProjects\SubRosa\app\build\intermediates\exploded-aar\com.spotify.sdk\spotifysdk\1.0.0-beta5\libs\jnihelpers-1.0.jar D:\adt-bundle-windows-x86_64-20140702(2)\adt-bundle-windows-x86_64-20140702\sdk\extras\android\m2repository\com\android\support\support-v4\19.0.1\support-v4-19.0.1.jar C:\Users\Jesse\AndroidStudioProjects\SubRosa\app\build\intermediates\exploded-aar\com.spotify.sdk\spotifysdk\1.0.0-beta5\classes.jar C:\Users\Jesse\AndroidStudioProjects\SubRosa\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\19.0.1\classes.jar
Error Code:
1
Output:
'D:\adt-bundle-windows-x86_64-20140702' is not recognized as an internal or external command,
operable program or batch file.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
这是我的一些代码和gradle构建/道具:
local.properties
sdk.dir=D\:\\adt-bundle-windows-x86_64-20140702(2)\\adt-bundle-windows-x86_64-20140702\\sdk
的build.gradle(APP)
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '19.1.0' // Note: this version should match the latest build-tools version
// that you installed in the SDK manager
defaultConfig {
applicationId "com.jesse.spalding.subrosa"
minSdkVersion 14
targetSdkVersion 19
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
dexOptions {
preDexLibraries = false
}
}
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.spotify.sdk:spotifysdk:1.0.0-beta5@aar'
compile 'com.android.support:appcompat-v7:19.0.1'
}
如果有人知道这笔交易是什么,请告诉我。我需要开始为最终项目开展这项工作,并且出于某种原因无法解决这个技术问题。
答案 0 :(得分:1)
问题似乎是你的SDK所在的路径中有一个括号(D:\ adt-bundle-windows-x86_64-20140702(2)\ adt-bundle-windows-x86_64-20140702 \ sdk) ,这会在构建过程的其中一个阶段引起问题。将SDK移动到名称更简单的路径并在Android Studio中更新其位置(项目结构> SDK位置),您应该很高兴。