我已将 scribe-1.3.7.jar 文件放在我的libs文件夹中
我有这个build.gradle
文件来导入Scribe OAuth
库 -
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "app.example.com.scribetest"
minSdkVersion 15
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'org.scribe:scribe:1.3.7'
build.gradle
文件正在构建成功,但在运行应用程序时显示错误 -
错误:任务':app:preDexDebug'执行失败。
com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令 'C:\ Program Files \ Java \ jdk1.8.0_05 \ bin \ java.exe''已完成 非零退出值1
build.gradle
?