Questions tagged [in-app-update]

Use tag for questions addressing in-app updates in Android (Play Core library feature)

In-App updates is a Play Core library feature that introduces a new request flow to prompt active users to update your app.

185 questions
3
votes
2 answers

Google Application Update - Regarding Immediate Update for the Android Live Application

I am following below link to provide app update experience or feature in my android live application. The link is here : https://developer.android.com/guide/playcore/in-app-updates#java From the link content, I am implementing Immediate App Update…
Jaimin Modi
  • 1,530
  • 4
  • 20
  • 72
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…
3
votes
0 answers

Best practice to debug Android In-App Update

I tried to use Google In-App Updates library in my application that already in the Playstore. But i have some problems about how to test it. I am not gonna use FakeAppUpdateManager since there are no UI is being shown and no update is really…
Alkaaf
  • 265
  • 1
  • 2
  • 11
3
votes
3 answers

Suggest users to update Android app with Google Play (Google In-App Update Support)

I saw this dialog always appears when I open old version of Tokopedia app. Tokopedia suggests me to update the app. The dialog gives me two methods to update the app: Update now Update when Wi-Fi available If I select Lain Kali (Cancel), the…
Anggrayudi H
  • 14,977
  • 11
  • 54
  • 87
3
votes
2 answers

Android, InstallException occurs when I use in-app updates

In Google I/O 2019, In-app update is added newly. So I am trying to use it following the document: https://developer.android.com/guide/app-bundle/in-app-updates But it sent an InstallException…
yoonhok
  • 2,575
  • 2
  • 30
  • 58
2
votes
0 answers

Why android in-app update stopped working after some time?

I have implemented an in-app update by following the official documentation. And it has been working perfectly for the past two months. But suddenly it stopped notifying the users about new updates even though the update was available on the Play…
Javlon
  • 1,108
  • 2
  • 15
  • 29
2
votes
0 answers

Why is my In-App Update availability check always returning update not available?

I'm having issues with in app updates. My procedure as to testing it is I release two versions of the app, with one that has a higher version code(in gradle). When I check my log statements, they say that there is no update available. However, I did…
2
votes
0 answers

How to create a custom UI and update the app without redirecting to playstore

I'm looking to create a custom UI for in-app updates. Once the user taps on a button the download should start automatically in the background. I tried this package, which does have background download functionality but custom UI cannot be created…
Yashwardhan Pauranik
  • 5,370
  • 5
  • 42
  • 65
2
votes
0 answers

Android in-app update shows wrong availableVersionCode (88) in AppUpdateInfo

I'm trying to implement an in-app update-dialog for my android app written in java. The code snipped to check if an update is available, is taken from the android developer page. It's called in the onResume() method of the the Main activity. private…
iscod
  • 21
  • 2
2
votes
0 answers

startIntentSenderForResult is deprecated and I want a call to onActivityResult callback in my fragment

I am implementing in-app update in Android in my app using fragment. In order to get a callback in onActivityResult in my fragment, I should call update as follow using AppUpdateManager : appUpdateManager.startUpdateFlowForResult( …
Ali
  • 9,800
  • 19
  • 72
  • 152
2
votes
2 answers

Where to put in-app update implementation in Android

I am trying to implement in app updates in my app, but there is a disconnect between the documentation/tutorials that I have looked at and the actual final implementation. I followed various code tutorials…
factor2
  • 155
  • 9
2
votes
1 answer

Unable to Update App using Support in-app updates provided by Play Core Library

I am just trying to implement in app update service provided by google play core library API. After publishing the newer version of the app to the internal test track, I get the updated version of the app in play store But, I am unable to see the…
2
votes
1 answer

How to customize text In App Update? So we can explain them what's new or why user should update

How to customize text In App Update? So we can explain them what's new or why user should update The current text is not so friendly
UmAnusorn
  • 10,420
  • 10
  • 72
  • 100
2
votes
1 answer

Android: Fragment onActivityResult() isn't called when using In-app update

For the past couple of days, I'm trying to implement the immediate in-app update functionality, which works fine, but it seems I'm being unable to handle the result code (e.g. user cancels the update) in fragment - onActivityResult() as the method…
zadek
  • 31
  • 5
2
votes
1 answer

The InAppUpdate dialog pops up every time, even if I click the update button

I have an app published in the play store with versionCode 3, in a new version, I want to implement the in app update functionality, so in build.gradle I add: implementation 'com.google.android.play:core:1.8.2' And in the main activity: public…
Abdo21
  • 498
  • 4
  • 14