CrowdNotifier/crowdnotifier-sdk-android

Missing lazysodium dependency

Opened this issue · 0 comments

The application has suddenly stopped building due to a problem with lazysodium-android dependency

Our original gradle repository configuration that was building the project properly was:

allprojects {
    repositories {
        google()
        jcenter()
        maven {
            url  "https://dl.bintray.com/terl/lazysodium-maven"
        }
     }
}

Then we tried a fresh build (with no gradle cached dependencies) and the following error raised:

Could not GET 'https://dl.bintray.com/terl/lazysodium-maven/com/goterl/lazycode/lazysodium-android/4.2.0/lazysodium-android-4.2.0.pom'. Received status code 403 from server: Forbidden
Enable Gradle 'offline mode' and sync project

We have tried removing maven bintray repository and replacing it with mavenCentral and we get the following error:

Could not find com.goterl.lazycode:lazysodium-android:4.2.0.
Required by:
    project :app > org.crowdnotifier:crowdnotifier-sdk-android:2.1.0

We are using crowdnotifier-sdk-android:2.1.0 but the problem is present in 3.0 version too

Regards