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
2 answers

How to check if in app update code is working

I have a live app on playstore and I want to use in_app_update package in flutter to check for app updates and update the app on user's phone. I have the following code which runs the app update in the background and shows a spinner until the…
mcfred
  • 1,183
  • 2
  • 29
  • 68
1
vote
1 answer

How to give in app update to add/remove features in my app without any update from Playstore?

I'm designing an Android app in which I need a feature that can enable me to do Update app of users for new features even though they are not updated from Playstore. With out app update in Playstore I can add/remove new features. Ex: I had seen…
1
vote
0 answers

AppUpdateManager in Managed Google Play?

According to the documentation apps in managed devices are updated automatically when the following constraints are met: The device is connected to a Wi-Fi network. The device is charging. The device is idle (i.e. not actively used). The app to be…
Dan
  • 173
  • 2
  • 18
1
vote
1 answer

Error(-10): The app is not owned by any user on this device

I implement the in-app update and it works good, but when I have a new Google account that never download my app from play store , the in-app update failed by app not owned error "Install Error(-10): The app is not owned by any user on this device"…
1
vote
0 answers

Application update did not change UI

We have in-app update feature were we use installPackage() of PackageManager to install new update of the app. This is working most of the time. But at times we're facing an issue were app version is change but App UI & code is not. I can see that…
Shahal
  • 1,008
  • 1
  • 11
  • 29
1
vote
0 answers

How to check if fakeAppUpdateManager is working fine?

I am implementing In-App Updates for Android following below link: https://developer.android.com/guide/playcore/in-app-updates#java I have implemented FakeAppUpdateManager to test the flow. But after running the app I dont see anything happening.…
Isha
  • 11
  • 3
1
vote
2 answers

Published app showing different signatures on google play

I have an app on playstore hosted via someone else's account. I made an update via playstore, it went successful. Now i was checking third release by directly installing apk from phone(not from playstore) to overwrite version 2, it failed to…
1
vote
1 answer

How to show in-app update dialog when the user has denied the update previously after few days again?

I have implemented the functionality to show Flexible in-app update dialog when an update is available. But when the user chooses not to update the app, and the app is restarted the dialog appears again. How can I show the dialog again after a few…
1
vote
1 answer

Google InApp Update Not working - Always returns UPDATE_NOT_AVAILABLE

I am not able to see the Google In-App Updates working in my application. Here is the way I have implemented my code, but it appUpdateInfo always returns UPDATE_NOT_AVAILABLE (1). onCreate Method appUpdateManager =…
Gaurav Arora
  • 8,282
  • 21
  • 88
  • 143
1
vote
0 answers

In-app update giving UPDATE_NOT_AVAILABLE whereas on playstore I can see update button

I have integrated in-app feature but it is returning UPDATE_NOT_AVAILABLE whereas on playstore I can see update button and my app version is lower than playstore version. fun updateAppIfAvailable(context: Context) { val appUpdateManager =…
Ragini
  • 765
  • 1
  • 11
  • 29
1
vote
0 answers

Android plenty of errors java.lang.IllegalArgumentException In-App Update

I implemented In-App Update on Android. Todya I published a new version of my App and I'm having a lot of errors in Play Console (+3K errors for this cause today!). The error is: java.lang.IllegalArgumentException: at …
A. Cedano
  • 557
  • 7
  • 39
1
vote
2 answers

How to use of In-app updates API in my app

I found 2 links where I thought that it will be right but after the build of that code it showing nothing. I am adding one of two and recently build an app. Link have accepted answer but it is not running in my app and I am unable to find what I…
BlackBlind
  • 772
  • 9
  • 26
1
vote
1 answer

inapp update android application installed but i'm getting the same version

i decrement version build and name , so version build and version name are lower than the version on play store, i implement inapp version update of google , everything work fine, the download has complete so i add button to tell user restart…
tamtoum1987
  • 1,957
  • 3
  • 27
  • 56
1
vote
1 answer

Handling Immediate In App Update after App termination

I am trying to handle the case in which, after the user clicks on the "Update" button in the immediate update dialog and the update starts, but he terminates the App. I have tried to get a call back from the onActivityResult as mentioned in the…
zombie
  • 43
  • 4
1
vote
1 answer

How can I Pop a Custom Dialog Box in a flexible In App Update?

I am trying to get In app updates using the android play core library (com.google.android.play:core:1.6.4). The documentation provided by google is as in the following link: https://developer.android.com/guide/app-bundle/in-app-updates As described…
zombie
  • 43
  • 4