1

I have a problem at building my project in Android Studio, these are the main errors.

 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;

In Build tree there are errors in Build > run build > configure build > Configure project: library.

Is this a problem with new SDK or libraries configuration?

1 Answers1

1

Seems like you need to change the order of the plugins in your build.gradle file to :

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

Stated in this question

Itay Feldman
  • 846
  • 10
  • 23