OruxMaps

Uncategorized Boards => GENERAL => Topic started by: wolfgang61 on January 08, 2019, 11:12:48 AM

Title: Intent ACTION_VIEW on newer Android APIs
Post by: wolfgang61 on January 08, 2019, 11:12:48 AM
Does somebody have a working example for Android API 24 or later?



This kotlin code

   Intent(Intent.ACTION_VIEW).apply {
        setDataAndType(Uri.fromFile(File("/sdcard/Download/my.gpx")), "text/xml")
        appContext.startActivity(this)
    }

returns
android.os.FileUriExposedException: file:///sdcard/Download/my.gpx exposed beyond app through Intent.getData()

See //https://developer.android.com/reference/android/os/FileUriExposedException



It would be perfect to have an example in oruxmapsmanual.pdf which also works for later APIs