Hi
I don't want to put my program to google play just yet.
I have made a update check to program and if update is available it could be downloaded and installed.
Update check works nicely.
File is not big but how to implement it? Download and callsubdelayed to start install?
Link is api end point link so when calling or putting in chrome it would start the download.
like this http://site.net/...DnnApiEndpoint/Api.ashx?method=Application&APIKEY
I don't want to put my program to google play just yet.
I have made a update check to program and if update is available it could be downloaded and installed.
Update check works nicely.
File is not big but how to implement it? Download and callsubdelayed to start install?
Link is api end point link so when calling or putting in chrome it would start the download.
like this http://site.net/...DnnApiEndpoint/Api.ashx?method=Application&APIKEY
B4X:
Dim upgrade As HttpJob
Dim upgradelink As String = "http://site.net/..DnnApiEndpoint/Api.ashx?method=VERSION&apikey=apikey"
upgrade.Initialize("upgrade",Me)
upgrade.Download(upgradelink)
Sub JobDone(Job As HttpJob)
If Job.Success = True Then
????