Might be helpful to explain to developers what and where the "cache" is, and why, how and when this is extension would be useful for them to use in their projects?
Yes, you can store data that in not used for the lifetime of the app, like instead of loading image from web again you could cache it, and next time if it exists we can load it, else the error FileNotFound occurs, so then you need to load it again from web.
Also, you could do temporary actions on file, instead of doing them in the non-cache storage.
Does the programmer know what the clipboard and copying to the clipboard are?
Maybe I'll ask otherwise. Can the data that has been copied to the cache be used outside the application?
thank you for your contribution
did you also test the extension here in MIT App Inventor?
As you know, currently there are a few differences between Kodular and MIT App Inventor... MIT App Inventor already supports AndroidX libraries and some new annotations and does not support the old support libraires anymore...
i want to store the value of a text input, so that when you close the application and reopen it, it is already saved.
But when i try to code it in my app it doesn't work.
Cache is flammable. The user can go to the Cleaner app on their device or in Settings and delete all cache, and your data will be lost. Cache is good for files that are stored temporary and can be recreated easily.
If you do not want the user to permanently delete your data, look for alternatives.