Can anyone advise how I fix this.
My B4J app runs the following code and in Debug mode it loads up the pdf but in release mode it does not.
Debug mode
ManualUri = file:/C:/Users/locki/Documents/MIAKeying/B4J/Files/MIA%20User%20Manual%200.2.6.pdf
In Release mode
ManualUri = jar:file:/C:/Users/locki/Documents/MIAKeying/B4J/Objects/MIAKeying.jar!/Files/MIA%20User%20Manual%200.2.6.pdf
My B4J app runs the following code and in Debug mode it loads up the pdf but in release mode it does not.
Debug mode
ManualUri = file:/C:/Users/locki/Documents/MIAKeying/B4J/Files/MIA%20User%20Manual%200.2.6.pdf
In Release mode
ManualUri = jar:file:/C:/Users/locki/Documents/MIAKeying/B4J/Objects/MIAKeying.jar!/Files/MIA%20User%20Manual%200.2.6.pdf
B4X:
Dim ManualUri As String = File.GetUri(File.DirAssets, "MIA User Manual 0.2.6.pdf")
Log(ManualUri)
fx.ShowExternalDocument(ManualUri)