-
Notifications
You must be signed in to change notification settings - Fork 176
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
No static method loadLibrary in class #13
Comments
@tyronen did you figured this out? I'm also having this error |
Hey! Sorry for the slow response. I'm not entirely sure where this would come from. I don't have a good repro for this, so the best thing I can offer right now is to just publish another release based off master and see if that does anything. |
I've put up a |
Hi @tyronen :) The error message complains about lack of |
Ahh, thanks for the explanation, @michalgr! |
The interface changed between 4.1 and 5.0. Fresco pulls in SoLoader 5.0 and Sonar pulls in 4.1 and we have a disaster. Valuable lesson for me: do not let public API to change. I am sorry for that. @passy: can we update Sonar deps and organize a new release ? |
@michalgr Yes, I'll do that now. |
Summary: See facebook/SoLoader#13. Test Plan: ./gradlew :sample:installDebug
Just started having this problem too a few hours ago.. @passy after your PR get's approved it should be resolved after a gradle sync? |
I'll need to push out a new release too, but that should take care of it.
On Tue, 17 Jul 2018, 17:38 Gadigg, ***@***.***> wrote:
Just started having this problem too a few hours ago..
Can't believe I caught this thread live
@passy <https://github.com/passy> after your PR get's approved it should
be resolved after a gradle sync?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#13 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAAmsqftXLiDEvBQypKEMrYpWe89l-fKks5uHhL4gaJpZM4VFZWb>
.
--
timezone: eu/london | utc+1
@passy
|
@passy any ideea how soon will this happen? When will we be able to pass this? 😭 |
@cristianonescu The Sonar release? I can do that tomorrow. |
Related react-native issue: facebook/react-native#20242 |
Summary: See facebook/SoLoader#13. Pull Request resolved: #159 Reviewed By: jknoxville Differential Revision: D8876179 Pulled By: passy fbshipit-source-id: 0965f9c952410bf8f4fec80b715dd93b5c1a8918
New Sonar release is out as |
Still working on the long tail of this. Released |
0.5.1 still has this issue. |
@gengjiawen The SoLoader package is fine. You have an old dependency that is linked against an older version of SoLoader and are mixing it with a > 0.5.1. I'm closing this issue now because I've updated all the packages I have any control over. |
@passy Nope, You can see facebook/react-native#20325. |
(Hi @passy, if you're reading this, good to 'see' you again.)
This was previously reported in #10. I get https://pastebin.com/R5zfJtNn when starting up our app. Occurs with 0.5.0 and also with 0.4.1, but not with 0.3.0. Rebooting the Mac, as advised in that issue, did not help. We didn't attempt running with Windows.
Repro steps:
Our app had been running fine with SoLoader 0.4.1 and Fresco 1.9.0. We were doing a lazy-init of SoLoader; it is initialized by Fresco, and we didn't initialize Fresco until loading the first view with an image.
Lately we tried to add Sonar to the app. This requires calling SoLoader.init directly in the Application.onCreate method. This craps out.
The workaround is to downgrade to 0.3.0, but hopefully this can be fixed long term.
The text was updated successfully, but these errors were encountered: