Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Having issues using library with gradle version 7.0.0-beta4 without allowInsecureProtocol = true #30

Open
photizzo opened this issue Jul 5, 2021 · 0 comments

Comments

@photizzo
Copy link

photizzo commented Jul 5, 2021

I'm using gradle version 7.0.0-beta4 and it required a compulsory opt-in to use insure libraries

maven {
url "http://dl.bintray.com/androidessence/maven"
allowInsecureProtocol = true
}

After adding this, I was not still able to use the library in my project

To overcome this I had to host the library on jitpack and you can access it here while waiting for a fix from the maintaining. This is unlikely though since it has been a long time since this was updated;.

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}

dependencies {
implementation 'com.github.photizzo:MaterialDesignSpecs-develop:2.0.1'
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant