Hello since the last Xamarin update
we get this error
.
CS0012 The type \'IJavaPeerable\' is defined in an assembly that is not r
In my case it was a bit different, I couldn't find monoandroid folder in
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework.
So on further I searched and found it in
C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\ReferenceAssemblies\Microsoft\Framework\MonoAndroid
This might be the case with someone else.
These errors are not due to a problem with the solution or the references. They are a by-product of other changes that seem to confuse tools like ReSharper
. At least this is correct in my case, my solution still compiles and functions without manually referencing any Reference Assemblies.
There is a Xamarin bug report for this but they determined this to be an external issue with ReSharper
as per my experience.
Rather than manually adding references to the project you can also tell ReSharper to simply ignore the errors by opening:
ReSharper -> Windows -> Solution Errors
And then ignoring the issues here.
You can found it here
C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\MonoAndroid\v1.0\Java.Interop.dll
then :
if you still get error, try to rebuild your project
If you still can't find Java.Interop, then search for "Java.Interop" in your search bar inside C: drive and add it as a reference to your project.
In my case iOS and Android use the seem Business Layer when I run my android application works ok but when I run iOS show me the error You must add a reference to assembly 'Java.Interop, Version=0.1.0.0, Culture=neutral, PublicKeyToken=84e04ff9cfb79065'
The problem: I was using JSONObject from Org.Json
https://docs.microsoft.com/en-us/dotnet/api/org.json.jsonobject?view=xamarin-android-sdk-9
this dll just work with android
I need change for JsonObject from System.Json
https://docs.microsoft.com/en-us/dotnet/api/system.json.jsonobject?view=dotnet-plat-ext-2.1
That was my solution, now my two applications work
I go the same error after the last update. You just have to add the reference to Java.Interop to resolve the problem.
If you need some screenshots, I can provide them later.