You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PlatformException(ERROR, The file “Comprobante%20de%20pago%20COEGV%20-1010_7132496_09-0530563-.pdf” couldn’t be opened because there is no such file., null)
I can open the file successfully from android studio console when I print the same path I'm using...
void openPdf(File file) async{
print(file.uri.toString());
try {
SimpleShare.share(
uri: file.uri.toString(),
title: "Comprobante de pago COEGV",
msg: "Comprobante de pago COEGV"
);
} catch(e){
debugPrint("EXCEPTION");
debugPrint(e.toString());
}
}
Path printed, wich I click and opens the file in my Mac: file:///Users/mariano/Library/Developer/CoreSimulator/Devices/3CA17A81-93F3-4AB9-99F5-EAFB9BB653F3/data/Containers/Data/Application/205B6C06-5951-4E81-8384-408ACAE1506F/Library/Caches/Comprobante%20de%20pago%20COEGV%20-1010_7132496_09-0530563-.pdf
The text was updated successfully, but these errors were encountered:
Hello, I'm getting this error only in iOS:
PlatformException(ERROR, The file “Comprobante%20de%20pago%20COEGV%20-1010_7132496_09-0530563-.pdf” couldn’t be opened because there is no such file., null)
I can open the file successfully from android studio console when I print the same path I'm using...
Path printed, wich I click and opens the file in my Mac:
file:///Users/mariano/Library/Developer/CoreSimulator/Devices/3CA17A81-93F3-4AB9-99F5-EAFB9BB653F3/data/Containers/Data/Application/205B6C06-5951-4E81-8384-408ACAE1506F/Library/Caches/Comprobante%20de%20pago%20COEGV%20-1010_7132496_09-0530563-.pdf
The text was updated successfully, but these errors were encountered: