Couchbase Lite 2.0, DB22: SIGABRT in Xamarin Android app when opening database

I have activated CouchBase Lite in a Xamarin Android project like this:

    protected override void OnCreate(Bundle bundle)
    {
        TabLayoutResource = Resource.Layout.Tabbar;
        ToolbarResource = Resource.Layout.Toolbar;

        Couchbase.Lite.Support.Droid.Activate(Android.App.Application.Context); // <-- !

        base.OnCreate(bundle);

        global::Xamarin.Forms.Forms.Init(this, bundle);
        LoadApplication(new App());
    }

When I try to open the database

db = new Database(“test”);

I get this:

Fatal signal 6 (SIGABRT), code -6 in tid 10217 (name.CouchTest2)

(on physical device and on emulator)

Any clues?

Can you please share your Application Output. Turn on Couchbase Lite logging and share the stack trace. Just double check that all your projects are linked with db022 version.

Otherwise the code above seems fine.

The problem went away after updating Visual Studio to 15.5.6. Thanks anyway!