RSASYNCdownlaoder it is working nicely except with the following code it will not toast the progress
this is very wired if you placed any url instead of the flowing it will work
any ideas ?
B4X:
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
Dim AsyncDownloader As RSAsyncDownloader
AsyncDownloader.Initialize("AsyncDownloader")
AsyncDownloader.FileName = "test.apk"
AsyncDownloader.Directory = File.DirRootExternal
AsyncDownloader.Download("http://downloader-apk.com/apps/2015/02/19/WhatsApp_Messenger%202.11.528_[www.Downloader-Apk.com].apk")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Private Sub AsyncDownloader_Started
ToastMessageShow("The download has started.",False)
End Sub
Private Sub AsyncDownloader_Update (Progress As Int)
ToastMessageShow(Progress,False)
End Sub
Private Sub AsyncDownloader_Finished (Result As String)
ToastMessageShow("The download has finished.",False)
End Sub
this is very wired if you placed any url instead of the flowing it will work
any ideas ?