Nik

Results 18 comments of Nik

See if this can help: https://github.com/dpa99c/cordova-plugin-androidx-adapter

I guess you are also using `0.9.0-beta.2`. For me it did the trick somehow :/

See if this helps: https://github.com/dpa99c/cordova-plugin-androidx-adapter

Actually, the docs have useful information about how RT works and how it can be extended.

For those still having this issue and not being able to upgrade electron-builder and it's dependencies, one workaround would be using the docker build approach: https://www.electron.build/multi-platform-build.html#docker

Try debugging your application code and see what's going on. Are you using some caching within the application? Are you loading the entity by ID or using an Index (if...

Why not just use the store in DI so no need to change anything else. Like: ``` hostBuilder.ConfigureTestService(services => { services.AddSingleton(store); }); ```

So you need a particular session, like you cannot just open a new one on that store?

Your test classes inherit from `RavenTestDriver` ?

From the example, I don't see access to a static session, only to a static host. Am I missing something? In case you need to use the same session in...