Hi,
I'm using the AppUdating library https://www.b4x.com/android/forum/threads/appupdating-automate-apps-updating-from-a-webserver.37783/
When the update is presented to the user, started by
I would like to get a feedback if the user cancled the installation of the new .apk.
Searching the Forum I found "StartActivityForResult", however I don't get how to incooperate it in here.
Al I need is a feedback into the original app, since if the user confirms the installation, the original app wil be killed in the process of updating.
I'm using the AppUdating library https://www.b4x.com/android/forum/threads/appupdating-automate-apps-updating-from-a-webserver.37783/
When the update is presented to the user, started by
B4X:
Dim i As Intent
i.Initialize(i.ACTION_VIEW, "file://" & File.Combine(File.DirDefaultExternal, "tmp.apk"))
i.SetType("application/vnd.android.package-archive")
StartActivity(i)
Searching the Forum I found "StartActivityForResult", however I don't get how to incooperate it in here.
Al I need is a feedback into the original app, since if the user confirms the installation, the original app wil be killed in the process of updating.