Deprecated; see https://aka.ms/dotnet-discord, and please use use #android on the DotNetEvolution Discord
People
Repo info
Activity
MakarkinPRO
@MakarkinPRO
have a issue
Jonathan Pryor
@jonpryor
@MakarkinPRO: that's a warning message, not an error
looks like two different assemblies are binding the same Java types
which will result in no end of confusion
MakarkinPRO
@MakarkinPRO
@jonpryor this is error
any ideas of what can I do
?
HariharanArumugam
@HariharanArumugam
how to upload and retrieve image in sqlite database??
Atsushi Eno
@atsushieno
@jonpryor indeed. There should be ANDROID_24.
@MakarkinPRO remove references to Fabric.Sdk.Platform and anthing that indirectly references it.
Maybe you are either mixing different versions (where assembly set differs) or referencing that is not supposed to be "installed and/or run on Android target" e.g. "development environment only" assemblies.
@HariharanArumugam isn't sqllite database just a file? Then you can use "adb push" and "adb pull"
You specify the file name when opening sqlite database by yourself, right?
(haven't used it by myself, I may be wrong)
MakarkinPRO
@MakarkinPRO
@atsushieno sorry didnt' get where to delete Fabric.Sdk.Platform?
Atsushi Eno
@atsushieno
So you didn't add Reference to Fabric.Sdk.Platform.dll directly by yourself.
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 ?