我收到以下错误
错误:(17, 0(找不到 org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler 类型的对象上的参数 [文件集合] 的方法 compile((。
在导入在早期版本的Android Studio上完成的先前项目后,我偶然发现了此错误。I. 将生成工具版本升级到 3.0.1 或更高版本,以便它识别术语testImplementation , androidTestImplementation, implementation
II. 编辑您的 build.gradle 应用程序文件,以便将所有implementation
替换为 compile
以前
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:27.0.2'
testImplementation 'junit:junit:4.12'
// RecyclerView
implementation 'com.android.support:recyclerview-v7:27.0.2'
现在应改为
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:27.0.2'
testImplementation 'junit:junit:4.12'
// RecyclerView
compile 'com.android.support:recyclerview-v7:27.0.2'
然后,上述解决方案会生成有关 Aapt 的错误,然后通过在 gradle.properties 文件中添加以下行来修复该错误
android.enableAapt2=false
想知道这是侥幸还是每次都有效