I try to download pdf file with the codes below but I receive an log error given below;
java.lang.UnsatisfiedLinkError: dlopen failed: library "/data/data/app.taksim/files/libpdfview2.so" not found
What is my fault?
java.lang.UnsatisfiedLinkError: dlopen failed: library "/data/data/app.taksim/files/libpdfview2.so" not found
What is my fault?
B4X:
Sub WebView1_OverrideUrl (Url As String) As Boolean
If Url.EndsWith(".pdf") Then
Dim j As HttpJob
j.Initialize("pdf", Me)
j.Download(Url)
Return True
Else If Url.IndexOf("mailto:") > -1 Then
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW, Url)
StartActivity(Intent1)
Return True
Else
Return False
End If
End Sub
Sub JobDone (Job As HttpJob)
Activity.LoadLayout("Layout2")
End Sub