rbakhshi

Results 7 comments of rbakhshi

Had the same problem on ZTE T660 (Build T660_T04) with Android version: 5.0.2. Solution provided by @dankito fixed the problem. /** * get the open status. * * @return {@link...

With the version 1.0 (apr 29 2018) image scale for display does not work until you close the sheet and open it again. Edit: this is on Mac.

We ran into the same issue after removing any prior sdk and VS (2019) and installing a fresh VS 2022. We cannot even run a basic console application now! output...

I would love to see this. Currently we run our tests that involves running migrations in the tests. We use SQLite in-memory DB and everything is fine but the last...

I ended up following your suggestion @fubar-coder on injecting `IMigrationProcessor`. Still have to pass a global connection string in our case but managed to pass a custom DBFactory, DbCommand and...

@JonasJes Here is what I did: Below is the configuration for fluentmigrator: ```c# protected override IMigrationRunnerBuilder ConfigureRunnerForSqlite(IMigrationRunnerBuilder buildConfig) { buildConfig .WithGlobalConnectionString(_connection.Connection().ConnectionString) .Services .AddTransient() .AddScoped() // sp.GetRequiredService()) // sp.GetRequiredService()); return buildConfig;...

@programatix are you sure this ever worked in Xamarin? We had a similar need and ended up intercepting the request and injecting the headers there. Basically: 1. Override `ShouldInterceptRequest` 2....