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
1
vote
0 answers

When do we get InstallStatus.INSTALLED callback while using the Android in-app-update API

I am working with the android in-app-update API, but I am not getting the callback to InstallStatus.INSTALLED case. I do get the callback for InstallStatus.DOWNLOADED case. And also I am able to successfully update the app, but I want to execute…
1
vote
1 answer

Implementing in App Update Functionality In Android

I have followed the below mentioned step to integrate the in-app update. 1) Check for the update availability // Creates instance of the manager. val appUpdateManager = AppUpdateManagerFactory.create(context) // Returns an intent object that…
hasan_shaikh
  • 1,434
  • 1
  • 15
  • 38
1
vote
1 answer

Android In-App updates api cannot work on the Android TV device

From the doc of https://developer.android.com/guide/app-bundle/in-app-updates, we tested the in-app updates api with below code on a Android TV device(Android 8.0) and the version of the play store is 16.7.31 AppUpdateManager appUpdateManager =…
gary gao
  • 11
  • 1
1
vote
1 answer

in-app update restarting the obsolete version instead of the newly installed version

I want to implement the in-app update. With the following code, it correctly prompts the user to ask him to agree with the update, downloads the code and installs it. But then the system restarts the previously installed version of the application…
ema3272
  • 1,021
  • 2
  • 13
  • 28
1
vote
1 answer

In-App Updates : decide a strategy to choose between Flexible and Immediate update

I have implemented Google's library for providing In-App updates and I am able to receive In-App updates from Google Play store. I want to implement both Immediate update and Flexible update in a single app. But I can't find a way to do so. In-App…
Chintan Soni
  • 24,761
  • 25
  • 106
  • 174
1
vote
0 answers

Android AppUpdateManager doesn't finish IMMEDIATE update

I'm implementing AppUpdateType.IMMEDIATE in-app-updates from Play Market using this guide: https://developer.android.com/guide/app-bundle/in-app-updates When I test I can't finish update process - it just throws me back to old app where I get…
ildar ishalin
  • 685
  • 1
  • 9
  • 19
1
vote
1 answer

How to test in-app update API in android?

I want to integrate flexible updates in my app. Here is my code: fun checkForUpdates(){ val appUpdateManager = AppUpdateManagerFactory.create(this) val appUpdateInfoTask = appUpdateManager.appUpdateInfo val listener =…
Shunan
  • 3,165
  • 6
  • 28
  • 48
1
vote
0 answers

Is there a way to do In app updates for iOS apps like on Android

I saw a great way of handling app updates by Android, here is the link. Android has exposed a way to check from app if a new update is available and inform user, app can download update which can be installed later. We can also for user to update…
Kishoretheju
  • 827
  • 3
  • 8
  • 18
1
vote
2 answers

how to get notified when download completed in FLEXIBLE in-app-update android?

I have tried below code for FLEXIBLE in-app-update android, and while click on Update in the dialog it starts downloading the new update from play-store in the background, I have added listener as InstallStateUpdatedListener but it will not notify…
Dhiren Basra
  • 820
  • 9
  • 24
1
vote
2 answers

How to implement both flexible and immediate In-App Update

How Do I implement both flexible and immediate in-app update in app at once and how do i set which type of update i want the user to see.
Akash Sarkar
  • 101
  • 7
1
vote
0 answers

How to determine which type of update is in progress?

I am implementing android's In-App update. The problem I am facing is when the user kills application during app update and reopens it. Need To Do: On app reopen, I need to show install state according to the type of update, but there seems no way…
VishnuPrajapati
  • 119
  • 1
  • 6
1
vote
0 answers

Android In app Updates Asking for Wifi while it is on with wifi shared by cell phone

I want to update an android app with android in app update but I have some problem if the phone is connected to a WIFI provided by a cell phone (sharing its cellular network). In app Update seems to works like this: When update is found and…
1
vote
1 answer

How to specify which updates need to be updated immediately and which ones are flexible with Google's in app update API?

I have followed the steps on Google's site to support in app updates. However I remain confused on how I specify which updates are "immediate" and which updates are "flexible". I do not see a flag anywhere in the Google Play Developer Console. Or am…
Adrian Le Roy Devezin
  • 672
  • 1
  • 13
  • 41
0
votes
1 answer

Requsting help on app update using flutter

I am new to flutter, I am here to seek help in how to implement app update in flutter. Like How it is implemented or What are the ways to implement upates in an app using flutter. I have tried with upgrader package but it is not working properly,…
0
votes
1 answer

How do i apply In-app updates to the non play store apks?

I want to add in app updates checking in my application android studio(java) and i dont have a play store application or i want to do this for github (say) how do i do that? if possible can u guys please provide with sample codes... lets say i have…