-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Picasso and Lollipop problem #749
Comments
Interesting. Seems like a native issue. Have you tried another library for images if it successfully loads the bitmap? Also try to remove as a test |
Hi, thanks for your quickly response. I've tried to comment fit() and centerCrop() methods but still not works, same error. Below the all stacktrace: |
This is a problem with the SSL context in native code. Are you using OkHttp in your app along with the Facebook SDK? |
Hi Jake, |
Can you say what other libraries you are using? This happens when OkHttp configures NPN for SPDY/HTTP2 support and some other client library doesn't expect it. |
|
Hmm, It might be play services... give me an hour or two (I'm mobile) and I'll track down the code to set OkHttp as the global URL handler. |
@JakeWharton Thank you very much!! I love Squareup libraries ;) |
Hi @JakeWharton , did you have news about this issue? |
Try this: URL.setURLStreamHandlerFactory(new OkUrlFactory(client)); (where Sorry for the delay. Was traveling internationally. |
Thanks Jack, this fix solves my issue. |
Using
didn't fix the issue for me. It fails on Lollipop but works fine on KitKat. |
Hi,
I've this error:
Fatal signal 11 (SIGSEGV), code 1, fault addr 0x7700000155 in tid 2532 (Picasso-/102055)
and my app crashes everytime in the Android AVD 5.0.
I've this code in my fragment:
Picasso.with(getActivity())
.load(imageUrl)
.fit()
.centerCrop()
.placeholder(R.drawable.placeholder)
.into(navigationImageImageView);
All works correctly before 5.0.
Can you help me?
The text was updated successfully, but these errors were encountered: