Home > front end >  xamarin.android: tls support is not available (suddenly)
xamarin.android: tls support is not available (suddenly)

Time:11-29

I was building apps with xamarin.forms before for a while, and of today: the first time my app connects to our API the app halts on no specific line stating:

 tls support is not available 

I have changed nothing on my app, especially not in regard to the tls support.

enter image description here Is anyone else having this issue?

This is the whole error message:

enter image description here

I have also noticed that the system generats a new file called_ mono_crash-json

its a long file like this:

{
  "protocol_version" : "0.0.6",
  "configuration" : {
    "version" : "(6.12.0.158) (2020-02/5ce143a1a88)",
    "tlc" : "normal",
    "sigsgev" : "altstack",
    "notifications" : "kqueue",
    "architecture" : "amd64",
    "disabled_features" : "none",
    "smallconfig" : "disabled",
    "bigarrays" : "disabled",
    "softdebug" : "enabled",
    "interpreter" : "enabled",
    "llvm_support" : "0",
    "suspend" : "hybrid"
  },
  "memory" : {
    "Resident Size" : "19333120",
    "Virtual Size" : "9451528192",
    "minor_gc_time" : "0",
    "major_gc_time" : "0",
    "minor_gc_count" : "0",
    "major_gc_count" : "0",
    "major_gc_time_concurrent" : "0"
 },

CodePudding user response:

As it turns out, enabling the linker and NOT setting it to "LINK NONE" solved this issue. For some reason, with a disabled linker, the linker must have removed libraries that were needed for the TLS support...

  • Related