在Android Studio中建立旧项目的问题

时间:2019-01-23 20:09:07

标签: android android-studio android-gradle

我在Android Studio中构建项目时遇到问题,这些是主要错误。

 org.gradle.api.ProjectConfigurationException: A problem occurred configuring project ':library'.
 Caused by: java.lang.AbstractMethodError: com.novoda.gradle.release.AndroidLibrary$LibraryUsage.getDependencyConstraints()Ljava/util/Set;

在“构建”树中,“构建”>“运行构建”>“配置构建”>“配置项目:库”中存在错误。

新的SDK或库配置是否存在此问题?

1 个答案:

答案 0 :(得分:0)

似乎您需要将build.gradle文件中的插件顺序更改为:

//has to be BEFORE 'com.android.library'
apply plugin: 'com.novoda.bintray-release' 
apply plugin: 'com.android.library'

已在this question

中声明