We are experiencing inconsistencies when using different ways to load BCR routes into Navigator.
For a while, we've been using an Android intent method (kind of like 'open as') which was working fine (with some problems that we have discussed before):
Code: Select all
Intent testIntent = new Intent();
testIntent.setAction(Intent.ACTION_VIEW);
testIntent.setDataAndType(Uri.fromFile(tempFile), "application/octet-stream");
startActivity(testIntent);
Any insight if that might be the case and if this behaviour is intended?
Kind regards,
Dominykas Viečas