Question
Android FileProvider
In Android native code (kotlin) I can acces files like this var fileUri = FileProvider.getUriForFile(this, applicationContext.packageName + ".provider", file) In Adobe Air it is not possible to get the file ref correct. What I need is content://... and not file://... FileProvider.getUriForFile is not available in Air SDK 30 How can I solve this problem?
