I'have a simple button that download text file from site https:
It run until android8 , android 9 phone crash with new
sdk 28 compilation.
help me
Sub Button2_Click
Button2.Text="ATTENDI..."
jib.Initialize("j",Me)
jib.Download("
https://cannonedoro.altervista.org/lotto/estrazioni.txt")
End Sub
Sub JobDone(job As HttpJob)
If job.Success Then
Dim out As OutputStream = File.OpenOutput(File.DirInternal, "estrazioni.txt", False)
File.Copy2(job.GetInputStream, out)
Msgbox("Download estrazioni completato ","Download")
Button1.Enabled=True
Button2.Text="DOWNLOAD"
out.Close '<------ very important
Else
Log("Error: " & job.ErrorMessage)
End If
job.Release
End Sub