[solved] Meteor mobile, error local resource

Meteor mobile, this code:
‘’<img src=“file:///storage/emulated/0/Pictures/1577312580178.jpg” style="width: 48px; height: 48px;>’’
give me a error:
‘‘Not allowed to load local resource: file:///storage/emulated/0/Pictures/1577312580178.jpg’’
Someone know why ?

and change with:
‘’<img src="cdvfile://localhost/sdcard/Pictures/1577312580178.jpg” style="width: 48px; height: 48px;>’’
give me a error:
‘‘Refused to load the image ‘cdvfile://localhost/sdcard/Pictures/1577312580178.jpg’ because it violates the following Content Security Policy directive: “default-src * gap: data: blob: ‘unsafe-inline’ ‘unsafe-eval’ ws: wss:”. Note that ‘img-src’ was not explicitly set, so ‘default-src’ is used as a fallback.’

I follow the Cordova manual here:
https://cordova.apache.org/docs/en/latest/reference/cordova-plugin-file/
but no changes to solve…
Someone have any advice ?

whell… I found solution…
Will need to get file from filesystem by Cordova file plugin (https://cordova.apache.org/docs/en/9.x/reference/cordova-plugin-file/index.html).
My code now is:
[…] window.resolveLocalFileSystemURL(“cdvfile://localhost/sdcard/Pictures/1577312580178.jpg”, function (fileEntry) {
fileEntry.file(function (fileObj) {
var reader = new FileReader();
reader.onloadend = function() {
img.src = this.result;
[…]