Deprecated; see https://aka.ms/dotnet-discord, and please use use #android on the DotNetEvolution Discord
People
Repo info
Activity
MakarkinPRO
@MakarkinPRO
complitl confuse what to do)
Atsushi Eno
@atsushieno
When building Xamarin.Android application project, we track assembly references etc. and add them as references, recursively (your Reference assembly usually references further asseblies).
My assumption of the situation is, one of your assemblies references FooBar.dll, and FooBar.dll references Fabric.Sdk.Platform.dll. So you'll have to find and remove such a reference assembly from your References.
MakarkinPRO
@MakarkinPRO
So I need edit the DLL file?
thats what I need to edit?
Atsushi Eno
@atsushieno
Oh you have references to both Fabric.dll and FabricSdk.dll in your project. Then that's sipmple: remove one of those
from the solution pad (right pane)
(Can't type Cyrillic script so I cannot point exactly, sorry lol)
MakarkinPRO
@MakarkinPRO
just delete Fabric
it's came up with 100+ errors)
Atsushi Eno
@atsushieno
sounds like a progress
... or not; it just lost required assembly :p
what if you do otherwise; bring back Fabric.dll and delete FabricSdk and FabricSdk.Platform ?
That's a fork of the project I mentioned above, and it does not seem to contain "Fabric.dll"
_
MakarkinPRO
@MakarkinPRO
know I really confuse of how to I got that file)
Atsushi Eno
@atsushieno
Where is your TwitterCore.Platform from?
nuget package? Package name?
MakarkinPRO
@MakarkinPRO
when I openning a Project in Xamarin I see that ICONs
after that I push manuall ADD LINK, and choosen that files from the Folder... (but know cannot find them)
hah it's appering. When I pushing on the NUget packages
after that it's creating
after that I adding ADD LINKs manually and trying tio build a project
may be I'm doing something wrong?
Atsushi Eno
@atsushieno
It seems DigitsKit is also from Twitter
MakarkinPRO
@MakarkinPRO
looks like ORIGINAL github don't have Fabric
Atsushi Eno
@atsushieno
So, DigitsKit~.dll references TwitterCore~.dll, and it recursively references Fabric.dll
MakarkinPRO
@MakarkinPRO
but when I complinig it's have a a bunch more errors )
any ideas what to do? )
Atsushi Eno
@atsushieno
Going back to the resulting errors, you cannot have both Fabric.dll and Fabric.Sdk~.dll. Because they both reference one Java type and we need to have one-by-one map (so that JNI invocation to forward to managed type can be consistent).
MakarkinPRO
@MakarkinPRO
ok
Atsushi Eno
@atsushieno
Now, it is likely that DigitsKit and FabricSdk are from different sources
Since Fabric.dll (which is subsequently from DigitsKit) and FabricSdk cannot co-exist, you'll have to give up one of those.
MakarkinPRO
@MakarkinPRO
Looks like I detele Fabric... and now have a
am I going in the right direction?
Atsushi Eno
@atsushieno
Try build Cleanup? If you still have stale files in your project's obj/Debug/* even after Clean, delete that directory.