paul-kiar
paul-kiar
Akavache serializes the object from JSON when you call a Get method. This means that you will get a new in memory copy each time you call Get. So you...
@XavierQuincieux I have noticed that your code doesn't work, in current akavache there is a static private bool on BlobCache called shutdownRequested, if this is true then you will always...
This is my take on the code to resolve this issue: Akavache.BlobCache.Shutdown().Wait(); // this calls the shutdown code Akavache.BlobCache.LocalMachine = null; // clear out the static cached variables Akavache.BlobCache.Secure =...
@EmilAlipiev @XavierQuincieux 's solution works.
There has been no response on this so I'll share my diagnosis: FastColumnSetter was added 2 years ago in the code. 2 months ago PR #1059 was committed to the...
The existing PR doesn't really fix the problem, it just pushes the optimization of the generated run-time compiled code onto the consumer programmer. Maybe there is a way to compromise...
I'm having the same problem. My work around on android was to create: `public class MyNavigationContainer : IconNavigationPage, IFreshNavigationService { // copy everything from FreshNavigationContainer }` But this still gives...
I believe the problem is the fact that the Icon property is used for holding the name of the character to render, this is not a valid resource image name...
I have confirmed that the Icon property on IconToolbarItem should not be used as the holder for the Icon, if you set the Icon to say fa-barcode and then create...