I have been using the following code to install a new version of my APP:
Dim Instl As Intent
Instl.Initialize(Instl.ACTION_VIEW, "file://" & File.Combine(SDCard.Version, Version.NewPackage))
Instl.SetType("application/vnd.android.package-archive")
StartActivity(Instl)
(SDCard.version is a string containing the location)
Until recently, it worked fine. For some reason, the app installs and when you touch OPEN, to start the newly installed app, nothing happens. The OPEN button disappears and whatever was on the screen before the original app (like the home screen) is now visible.
If you touch the APP icon on the home screen, the new program starts right up as desired.
Any advice on what might be causing this?
Thanks, in advance.
Dim Instl As Intent
Instl.Initialize(Instl.ACTION_VIEW, "file://" & File.Combine(SDCard.Version, Version.NewPackage))
Instl.SetType("application/vnd.android.package-archive")
StartActivity(Instl)
(SDCard.version is a string containing the location)
Until recently, it worked fine. For some reason, the app installs and when you touch OPEN, to start the newly installed app, nothing happens. The OPEN button disappears and whatever was on the screen before the original app (like the home screen) is now visible.
If you touch the APP icon on the home screen, the new program starts right up as desired.
Any advice on what might be causing this?
Thanks, in advance.