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
1 answer

Auto-update Electron app to a specific (non-latest) version

I need to support a special release per user (or group), and I want each user will auto-update to a new available release only if it's suitable for him (by some kind of logic in the backend). I've tried to do so by using electron-builder's…
user1573640
  • 293
  • 1
  • 2
  • 10
3
votes
1 answer

Angular 8 - Resizing image on the front-end change-detection issue

I am trying to build an image compressor service from a couple of tutorials I found online . The service itself works as expected , it receives an image as File , then it compresses it and returns an Observable . All works great , except that I want…
Mihaylov
  • 338
  • 1
  • 3
  • 13
3
votes
2 answers

How to create electron auto updates using private github repository?

The update is being detected but I'm unable to download it to my app. I get the following error: Status: Update Available Status: Error in auto-updater. Error: Cannot download…
3
votes
1 answer

How do I build and install an electron app for raspbian using appimage

I am working on creating an electron appimage for my raspberry pi 4 to use in my car. I want to be able to use auto-updates from electron-builder so that I wont have to take apart the R-PI every time I want to update it. I have come across many…
bocodes
  • 387
  • 1
  • 4
  • 12
3
votes
1 answer

AOSP incremental OTA Signature verification failed

I'm trying to implement the incremental OTA update process for my custom Android ROM based on Android 7.0 Nougat. I've managed to build the first and second(modified) version of the firmware, so I have the first and second target_files.zip. I've…
3
votes
0 answers

WPF - Simple way to update published application

I know that there are many questions about auto updating, but all of them requires external programs or big works with servers that are not useful for my specific case. I need to update my WPF application in a custom way: I want to control which…
Pier Giorgio Misley
  • 5,305
  • 4
  • 27
  • 66
3
votes
0 answers

New - Google Play Store DEFAULT update popup

I am seeing a default google play popup (by Google Play itself) in various apps. Is there any new integration from Google Play. Is it publicly available or being rolled out by google play to selected developers. It allows the users to download the…
Gaurav Arora
  • 8,282
  • 21
  • 88
  • 143
3
votes
1 answer

Correct way to implement auto-update for Android app built with Xamarin.Forms

I recently started building my mobile application using cross-platform Xamarin.Forms toolkit and I'm having a hard time trying to implement some sort of an auto-update mechanism for it. More particularly, my app has some XML files along with images…
Lê Gia Lễ
  • 510
  • 3
  • 10
  • 24
3
votes
2 answers

which is the best way to update an application from a server?

I'm looking for a non-webstart/jnlp solution. I'd like to add to my app an update feature that checks in an ftp or http server and downloads the last version (if there is a newer one) replacing the libs that has been changed. How can i do that? I…
developer
  • 9,116
  • 29
  • 91
  • 150
3
votes
0 answers

MacOS: Silent auto updates for cocoa command line tool application

We have a single .pkg file which consists of user app and command line tool app. We are using Sparkle.framework for updates. While updating, it always asks for admin password. Is there any way to silently update the command line (root) app in Mac…
Mobile_Dev
  • 91
  • 6
3
votes
2 answers

Vb.Net update Datagridview in main form when save data in another form

This my function to display data from sql server to Datagridview Private Function getpdfinfo1() As DataTable DataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect Dim dtpi As New DataTable Dim connString As String =…
Hazim Mohammed
  • 107
  • 1
  • 2
  • 10
3
votes
1 answer

UWP App update with own server

I'm searching a way to update a Windows Universal App without the Store, so i can provide the appxbundle file from my own server. I can download this package from within the app, but i have not found a solution for installing it. The device portal…
andy
  • 509
  • 1
  • 8
  • 21
3
votes
1 answer

install4j auto update download failure

I'm trying to use the auto-update feature of install4j. The updater is configured as stand-alone and is launched by the user from a menu item with the code snippet from the installer configuration. The updates.xml URL is configured in the…
Sasha
  • 93
  • 9
3
votes
1 answer

Automatically restart a service after unattended updates under systemd

I've added a service (Seafile, in this case) that I want to have running at all times to systemd with a service file. It works great, but every time the unattended updates run, the service gets shutdown properly - but never restarted. Here's what…
Aaa
  • 614
  • 5
  • 14
3
votes
0 answers

Package installer doesn't ask to click on "Done" or "Open" after updating app programmatically

My app has Auto-Update feature. I install apk file using this code: Uri uri; Intent intent; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file); …