I have a project which has can use facebook login. Sometimes I get the following exception:
Java.Lang.ClassNotFoundException: Didn't find class "com.facebook.R$style"...
After a clean and rebuild, often solves the issue. Have anyone encountered this issue, and managed to solve it? Sidenote: The project is fairly large, and uses multi-dexing.
Related
I am getting random crash in my in-market app that I believe caused by ODR. And It looks like I am not the only who encountered it, I found this radar and this thread but neither of them seem to have a fix for the issue. I am hoping somebody here have encountered this issue and found a fix for it, or a repro steps would be helpful too because I cannot reproduce it
I'm trying to setup Openpose + Pyopenpose following in a container following this gist: https://github.com/christian-lanius/PyOpenPose.
That works fine until the caffe compilation step, during which a opencv2/core.hpp not found exception is thrown (note that the OpenCV installation step terminates successfully). While there are a number of rather similar questions around, I nonetheless couldn't find a viable solution in my context.
I'm assuming I have to somehow link OpenCV so it can be found by other applications - do you guys have any idea how to fix or circumvent this error?
Thanks!
I am getting the following error when importing the project into GGTS:
Grails Dependencies [2.0.1] (uninitialized).
I could see, the problem is similar to which is raised in one of the issue
http://forum.spring.io/forum/spring-projects/springsource-tool-suite/115801-missing-grailsdependencies
After updating from AngularDart 0.9.9 to 0.10.0 I encountered weird error messages:
Cannot resolve a circular dependency! (resolving ElementProbe -> ElementProbe -> ElementProbe...
The stack trace doesn't contain any method or class of mine, except applicationFactory().run();
What has happened, and how to fix it?
This is a known bug https://github.com/angular/angular.dart/issues/961.
You need to ensure you have di version 0.0.40 which contains a fix.
No idea whether it's a good idea what I did to fix the error, but here is my solution:
I suspect pub update didn't delete every old class. So I deleted the every package in the packages folder, and ran pub get again.
Does anyone have know how I can step into system.web.mvc? I am getting an error (Cannot create an abstract class) that is buried in the System.Web.Mvc.DefaultModelBinder.CreateModel method, and I can't tell which part of my code is causing the issue.
I was advised that I could download the sourcecode from codeplex, (actually microsoft.com/downloads as I am using 1.0), build in Debug and then step through. I tried, unfortunately the system.web.mvc was installed in GAC, thus causing an ambiguous call, and gacutil would not allow me to uninstall, so tried by hand removing from the registry (HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Global\system.web.mvc). when I ran my program it was still reporting an ambiguous call.
Background
A couple of weeks ago I had a problem where MVC was throwing up a YSOD, but I could not step into the code to find the problem because the issue was I was doing something wrong, that was not being picked up until it was in the framework (in this case, by thrashing around blindly for a day I found it was that I didn't have a default empty constructor on one of the classes within my viewmodel). Now I am getting a different error (Cannot create an abstract class) that is buried in the System.Web.Mvc.DefaultModelBinder.CreateModel method, but I don't know what part of my code is causing the error in the framework.
It's a little involved, but you can do it. Steve Sanderson has step-by-step instructions.
If you have the source code then you can recompile the code using a different assembily name and reference that.