saltedge / saltedge-android

A handful of classes to help you interact with the Salt Edge API from your Android app
https://www.saltedge.com
MIT License
7 stars 9 forks source link

Remove org.jetbrains:annotations-java5 from gradle #66

Closed sboo closed 4 years ago

sboo commented 4 years ago

Hi,

implementation 'org.jetbrains:annotations-java5:16.0.3' causes conflicts when implementing in other projects.

Right now I'm implementing it like this:

implementation ('com.saltedge.sdk:saltedge-library:3.2.0@aar') {
        transitive = true
        exclude group: 'org.jetbrains' , module:'annotations-java5'
}

However to the best of my knowledge it shouldn't be in your build.gradle anyway.

Cheers, Ramon

ConstantinKV commented 4 years ago

@sboo Thank you for your contribution.

ConstantinKV commented 4 years ago

@sboo dependency has been removed. Please check new version 3.2.1. If all ok please close the issue.

sboo commented 4 years ago

It compiles successfully without anymore issues. Thanks for the quick response