Michael Rinderle
Michael Rinderle
@Ismael-VC i see what you mean and it didn't make much sense to me either. it's not a bug but i can't honestly say i know exactly how it works...
i dont have it figured out yet either but one thing you should know that there is a language class in SL4A that can be extended for each new language....
``` java @Rpc(description = "Get Memory Statistics By Type") public float getMemoryStat(@RpcParameter(name = "type") String type) throws InterruptedException { ActivityManager.MemoryInfo mi = new ActivityManager.MemoryInfo(); ActivityManager activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE); activityManager.getMemoryInfo(mi);...
i get it now. i'll look into this. off the top of my head i am thinking custom class loading might be the answer. i am not too familiar with...
this is rudimentary since it is only returning as strings right now and has virtually no error handling but I think this is probably the approach to take for this...
We are having the same issue with .NET Maui for Windows by default when adding the toolbar to the TopBar, Issues: [18258](https://github.com/dotnet/maui/issues/18258) & [19166](https://github.com/dotnet/maui/issues/19166) I tried adding this to a...