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

In-app updates not working due to playstore cache issue

In-app updates is not visible to my app user's due to playstore cache issue. My user are not able to timely update the app. What is solution to this ? not everytime i can tell my user to clear cache of playstore. How can i get a callback in which i…
Feroz Siddiqui
  • 3,840
  • 6
  • 34
  • 69
0
votes
0 answers

Detect if an Android app has an update without manual polling

Currently I'm using in app updates to check if there is an update to an application. Specifically AppUpdateManager.getAppUpdateInfo, but it requires to get called (and it's usually called during onCreate()), but I need to subscribe to get updated…
IAmJulianAcosta
  • 1,082
  • 2
  • 14
  • 30
0
votes
0 answers

Android: Cannot find method updatePriority() in class AppUpdateInfo

I implement in-app update follow document: https://developer.android.com/guide/playcore/in-app-updates#check-priority I want to check update priority, but I can't find the updatePriority() method in the AppUpdateInfo class. Did they remove that…
0
votes
2 answers

Android in-app update - new version not detected immediately

I'm trying to use the in-app update (https://developer.android.com/guide/playcore/in-app-updates) to detect and install updates for my application which was published as a private app (from an EMM console). Even if the app is visible in the Play…
Michał Wolny
  • 383
  • 1
  • 3
  • 9
0
votes
2 answers

Why Google In-app updates doesn't see any updates, when it's actually available?

I met all google's requirements to test in-app updates, but it never worked. I tried to repeat my successful experience with in-app reviews, so I just deployed app with in-app updates implementation to internal track in play store (I incremented…
StayCool
  • 421
  • 1
  • 9
  • 23
0
votes
2 answers

Android InApp Update not getting updates automatically

I was considering Android InApp Update feature as an alternative solution for those clients who have turned off Auto-Updates from the PlayStore. But I found it doesn't get the latest updates by itself. First I was considering that there's something…
Shahzad Akram
  • 4,586
  • 6
  • 32
  • 65
0
votes
0 answers

Install updated app from internal server (OTA feature) in Android

I want to implement the OTA feature in android. My app will not be available in the google app store for auto-update. I added a timer that will periodically check for app updates with the server. If the device version miss-match with the server…
0
votes
1 answer

Using InApp Update API mode Flexible

I was using In App Update API with update type as Flexible using below code appUpdateManager.startUpdateFlowForResult( appUpdateInfo, AppUpdateType.FLEXIBLE, …
Jayshil Dave
  • 1,106
  • 10
  • 22
0
votes
1 answer

Android inApp immediate update

I'm about to launch my app. I wrote a code for inApp immediate update since I want everyone who downloaded my app to update when I upload updated version. I wonder if this code will work without causing any problem. mAppUpdateManager =…
0
votes
1 answer

Calling appUpdateManager.completeUpdate() can crash my app if I move to a different fragment / activity

I've been recently trying out Android's in-app-update API here https://developer.android.com/guide/playcore/in-app-updates and calling appUpdateManager.completeUpdate() this method after successfully downloading the update seems to work, if I stay…
Mike
  • 1,313
  • 12
  • 21
0
votes
0 answers

Check how many users have got the In-App updates screen

I have implemented In-App updates in android. I want to check that how many users have got Flexible or immediate screen. Is there any way to check this?
Isha
  • 11
  • 3
0
votes
1 answer

How to call AppUpdateManager.startUpdateFlowForResult() from viewmodel?

How can I call AppUpdateManager.startUpdateFlowForResult() from viewmodel in android. It requires an activity/fragment as a parameter.
Anik Das
  • 31
  • 1
  • 6
0
votes
1 answer

publishing an immediate update

While publishing new version of app in google play, is there any way immediate(force) update for all users?I cant find information about publishing immediate update.For example I published app with wrong code.I want to force update users to new…
0
votes
1 answer

Why In-App Upgrade is Not Working? Why its not going to onSuccss() method?

I am showing rating popup on a different interval in my App and after the upgrade, I want to show rating popup from starting interval. For that, I have to reset its config on upgrade. I have implemented In-App Upgrade in my App but for some reason…
0
votes
1 answer

How to cancel flexible in-app update while downloading?

I couldn't find it in the documentation of AppUpdateManager, but I hope it's possible. The question is how to enable user to cancel the download of the update? In particular when the requestUpdateFlow() returns AppUpdateResult.InProgress.
Nominalista
  • 4,632
  • 11
  • 43
  • 102