找不到参数 [目录 'libs'] 的方法 api()
Could not find method api() for arguments [directory 'libs']
打开文件
这是我的 gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.1"
defaultConfig {
applicationId "com.landdrops.cricketfantacy.androidbottom"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.0.1'
implementation 'com.android.support:design:27.0.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test.runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}
我得到
Error:(23, 0) Could not find method implementation() for arguments [directory 'libs'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Open File
我能够通过将大多数依赖项更新到当前版本来更正此错误(不确定是否有必要,并且当最新版本与另一个组件的依赖项发生冲突时,我恢复了一个版本并清除了不匹配.此时,我正在使用 27.1.0 进行 appCompat,设计。(我使用 27.0.3 作为构建工具)
Gradle 包装到 4.4 版(这实际上是在加载过时的项目和更新插件时提示我做的)
调整项目build.gradle使用:
类路径 'com.android.tools.build:gradle:3.1.1'
对于我的 Java 库项目,我需要使用 java-library
插件而不是 java
:
- apply plugin: 'java'
+ apply plugin: 'java-library'
打开文件
这是我的 gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
buildToolsVersion "27.0.1"
defaultConfig {
applicationId "com.landdrops.cricketfantacy.androidbottom"
minSdkVersion 21
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.0.1'
implementation 'com.android.support:design:27.0.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test.runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}
我得到
Error:(23, 0) Could not find method implementation() for arguments [directory 'libs'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler. Open File
我能够通过将大多数依赖项更新到当前版本来更正此错误(不确定是否有必要,并且当最新版本与另一个组件的依赖项发生冲突时,我恢复了一个版本并清除了不匹配.此时,我正在使用 27.1.0 进行 appCompat,设计。(我使用 27.0.3 作为构建工具)
Gradle 包装到 4.4 版(这实际上是在加载过时的项目和更新插件时提示我做的)
调整项目build.gradle使用: 类路径 'com.android.tools.build:gradle:3.1.1'
对于我的 Java 库项目,我需要使用 java-library
插件而不是 java
:
- apply plugin: 'java'
+ apply plugin: 'java-library'