If File.Exists(Starter.Provider.SharedFolder, sPath) Then
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW, "")
Starter.Provider.SetFileUriAsIntentData(Intent1, sPath)
Intent1.SetComponent("android/com.android.internal.app.ResolverActivity")
Intent1.SetType("application/pdf")
Try
StartActivity(Intent1)
Catch
MsgboxAsync("No App to display PDF files is installed on your device...." & CRLF & CRLF & LastException,"Error PDF")
End Try
Return
End If