Hi, I am installing an apk via:
Is there a way to know if the intent has finished? So I can for example delete the .apk??
Thanks
Aidy
B4X:
If tmp.EqualsIgnoreCase(".apk") Then
Dim iIntent As Intent
iIntent.Initialize(iIntent.ACTION_VIEW, "file://" & File.DirRootExternal&"/Download/"&filename)
iIntent.SetType("application/vnd.android.package-archive")
StartActivity(iIntent)
End If
Is there a way to know if the intent has finished? So I can for example delete the .apk??
Thanks
Aidy