Questions tagged [auto-update]

Auto-updating is software functionality that allows a program to maintain whether it or the supporting data is up-to-date in an automatic fashion.

1377 questions
3
votes
2 answers

Determine if previously installed app

I have an app on the App Store, and I want to make some changes that will not effect users that previously downloaded my app. Is there a way to determine if the user has previously downloaded my app?
DarthVadar123451
  • 619
  • 1
  • 6
  • 14
3
votes
3 answers

Silverlight 5 - OOB install/update broken when using anti-cache trick

I was using the timestamp trick on the Silverlight (see GetLastWriteTime() using answers in How do you force Firefox to not cache or re-download a Silverlight XAP file?) successfully with Silverlight 4. Using a Silverlight 5 runtime*, the…
jv42
  • 8,521
  • 5
  • 40
  • 64
3
votes
1 answer

Android -- Auto Install third party apk file from a web server

How to install the new version of apk file from a web server automatically instead of manual install(Downloading the apk and clicking the same).Upon starting the application , it should query for the higher versions available in web server and based…
AndosBerry
  • 145
  • 1
  • 12
3
votes
1 answer

Is it possible to use http get and http post in NSIS?

I have a local updater that is able to download a mini installer from the web server using the NSISdl plugin. Let's say I have a bunch of mini installer versions. Is there also a way for the local installer to check for the "LATEST" mini installer…
Owen
  • 4,063
  • 17
  • 58
  • 78
3
votes
2 answers

What are the options for making a self-updating iOS application with MonoTouch?

I am trying to make an iPad/iPhone application (with MonoTouch) which starts by checking the current version versus the latest version reported by a custom web service. If the application is out of date it should download the binaries of the new…
3
votes
1 answer

Re-releasing an iOS app in other countries?

I have an app that I pulled from countries outside of the US due to a major bug regarding reverse geocoding. I have fixed that bug and resubmitted for review by Apple, but I'm curious if users in other countries that already purchased the app will…
Donavon Yelton
  • 1,227
  • 3
  • 15
  • 24
3
votes
2 answers

How would you implement an auto-update for a standalone PHP project using GitHub?

My project is a collection of PHP scripts using MySQL as a database and needs to be installed locally using WAMP/LAMP/MAMP. Previously I've been sending the users a link to a zipped archive and having them overwrite it, but since I took the plunge…
John Doe
  • 298
  • 1
  • 3
  • 16
3
votes
0 answers

Send push notification when the app is auto updated

I saw some apps send me notifications when the app is auto-updated by the Apple app store. We're building an app with Flutter. Is it possible to send a push notification to notify users when the app is auto-updated?
angelokh
  • 9,426
  • 9
  • 69
  • 139
3
votes
1 answer

Django custom admin actions auto updating/refresh admin page

I have a an admin action that opens a pdf object from my db and updates certain fields associated with that row. How would I get the admin page to automatically display the changes to those fields as happens with the pre-installed delete admin…
Joseph
  • 290
  • 5
  • 15
3
votes
0 answers

MSIX package can install but won't update

Use case I can install the MSIX package. It detects an update but when I'm trying to update a justed packaged MSIX package. When I release I get the following error: Error App installation failed with error message: error 0x8007000D: Opening the…
StuiterSlurf
  • 2,464
  • 4
  • 34
  • 55
3
votes
1 answer

React native automatic update from store

Hi guys I need my react native app to update it self automatically (with user consent) when new version is published to the store (both android and ios) I need the app to download the apk or ipa and complete the update process, not using CODE PUSH…
3
votes
1 answer

How does update management works for virtual machines in Azure?

We defined the execution's time of the update management with a runbook for 6 hours. But I would like to know : Does update management work asynchronously (every virtual machines are getting updated at the same time)?.
Elias Arellano
  • 433
  • 5
  • 16
3
votes
1 answer

Flutter how to update Listview.builder if the data is changes

I'm working with a ListView.builder in Flutter. For now all was working fine, I have the follwing lines of code in the callback methods: @override void initState(){ items = new List(); for(int index = 0; index < dataList.length; index++){ …
notarealgreal
  • 734
  • 16
  • 29
3
votes
1 answer

How to update Cordova Based App when new version is Available in AppStore?

I have Developed a Cordova Based Application which is published to Both IOS and Apple Store, I want users to get notified when there is a new version and allow users to update the app from App Store, Currently, I have tried few plugins but most of…
3
votes
1 answer

In-App Update install always failed with error code -100 in Android

I've implemented in-app update in my Android Application with FLEXIBLE update flow. I'm checking and requesting for the update in onCreate() of MainActivity While updating the app, always install failed with error code -100 which is mentioned at…