You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My answer was updated. Android developers need just add configurations "compile.exclude group: 'javax.inject', module: 'javax.inject'" to be able to use your library.
Add this lines to gradle dependencies and configurations modules.
That is it. So after this steps you can use this library on android.
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'net.sargue:mailgun:1.3.2'
}
configurations {
compile.exclude group: 'javax.inject', module: 'javax.inject'
}
The text was updated successfully, but these errors were encountered: