在build.gradle(Module.app)
中添加新的依赖项后,我正在尝试分级构建项目,但收到以下错误。不知道我在这里做错了什么。
依赖试图添加:com.loopj.android:android-async-http:1.4.9
Gradle sync failed: Could not find method complie() for arguments [com.loopj.android:android-async-http:1.4.9] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Consult IDE log for more details (Help | Show Log)
这是我build.gradle
文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
applicationId "com.londonappbrewery.climapm"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
complie 'com.loopj.android:android-async-http:1.4.9'
}
这是compile
.不complie
.有一个错别字。
实际上,这是一个方法调用。在 Groovy 中,我们可以为顶级表达式保留括号。这就是为什么您会收到如下错误的原因:
找不到方法 complie((