-
Notifications
You must be signed in to change notification settings - Fork 49
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
Unable to extract the trust manager on Android10Platform, sslSocketFactory is class com.android.org.conscrypt.OpenSSLSocketFactoryImpl site:stackoverflow.com #449
Comments
Yes, facing the same issue |
I'm experiencing this too! |
Managed to solve it with the help of this https://stackoverflow.com/questions/65737921/vimeo-networking-library-crash-for-android-10-platform-api29/65771964#65771964. Hope it helps everybody else until Vimeo releases a fix |
So I assume the problem is related to this issue and as per the comment in the linked SO answer the solution "makes the connection insecure". Is this fixed in some alpha versions of this lib or are there any other workarounds for this problem? Because this "bug" makes this lib unusable. |
I guess the team is inactive because they are working on version 2.0 which will fix a lot of current issues but a simple "We are working on it" would go a long way. |
Really sorry for the issues you're all running into with the release version. My advice is to use to the alpha versions of the library from Jitpack (latest is If you as a Vimeo user want to see this library ship regularly to a release channel, I suggest contacting support by filing a ticket and letting them know that you need public, regular releases of this library. If you're fine to use alpha versions (which are stable enough to ship in production), then I suggest doing that. |
Thank you for your answer. I almost lost hope 😅
It might be a problem on my side but I've never seen a similar error with any other libs. I understand that releasing public versions of this library is not the main focus and I am willing to use the alpha versions as long as they work. If filing a support ticket might help to improve the situation, I'll gladly do it. |
@wooodenleg What artifacts are you adding to your gradle file? You should only need the the top level networking library ( All three models artifacts are the same classes (which seems to be whats causing your error) but offer something a little different.
|
Well, since I thought that alpha versions are only on Jitpack, I am using only For future reference I used: repositories {
// ...
maven { url = uri("https://jitpack.io") }
}
dependencies {
// ...
implementation("com.github.vimeo:vimeo-networking-java:2.0.0-alpha.88") {
exclude(module = "models-serializable")
exclude(module = "models-parcelable")
}
} @WhosNickDoglio |
Issue Summary
I'm using version
1.1.3
.VimeoClient crashes upon
initialize
with the following stack trace:Reproduction Steps
Initialize the VimeoClient.
Expected Behavior
VimeoClient initializes.
Actual Behavior
VimeoClient throws IllegalStateException upon initialize.
The text was updated successfully, but these errors were encountered: