We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right not the plugin works with URLs having scheme file:// but does not correctly handle URLs with scheme content://
The text was updated successfully, but these errors were encountered:
Need to add smth like below for getCoordinates method
getCoordinates
if (fileUri.getScheme().equals("content")) { InputStream imageStream = null; imageStream = context.getContentResolver().openInputStream(fileUri); final ExifInterface exifInterface = new ExifInterface(imageStream); return exifInterface.getLatLong(); }
Sorry, something went wrong.
Hello, thanks for your plugin! Any updates for this feature? It'd be really useful for me!
This is still in queue. PR is welcome :)
ryaa
No branches or pull requests
Right not the plugin works with URLs having scheme file:// but does not correctly handle URLs with scheme content://
The text was updated successfully, but these errors were encountered: