I'm building a cross-platform file API and for handling Android, it's assumed that I'll have a static Lazy<android::content::Context>
in my library. I'll need methods such as context.getFilesDir()
to get the application installation directory.
Are there crates for the android.content
and java.io
APIs?