in-app-update Questions
15
Recently, Google introduced 'in-app updates' in Google I/O 2019.
So I am trying to use it.
val appUpdateManager = AppUpdateManagerFactory.create(this)
val appUpdateInfo = appUpdateManager.appUpda...
Retinue asked 11/5, 2019 at 4:0
4
I have been trying to add the in app update feature to make the user update the app when there is a new update available in the playstore. I am using the package in_app_update.
But it keeps throwin...
Pickard asked 18/9, 2020 at 13:28
4
What is the alternative to get callback for startUpdateFlowForResult in InAppUpdates instead of onActivityResult since it is deprecated?
Maestro asked 27/10, 2021 at 12:54
3
Solved
I have an android app which uses in-app-updates. After targeting android 14 (API 34) the app will not start due to this error:
FATAL EXCEPTION: main
Process: no.norva24.mslam, PID: 8281
java.lang.R...
Divorcee asked 14/6, 2023 at 11:33
2
In-app update is available multiple times in my app. User can cancel the update first time while opening the app and choose to trigger in-app Update from another fragment manually.
As per Google do...
Baa asked 9/3, 2021 at 14:53
0
After update my app 9 (1.0.10) to 10 (1.0.11) & i used in_app_update: ^4.0.1 package to detect the app update but when i open my app after the update it show me update dialog try to update the ...
Trinhtrini asked 4/4, 2023 at 8:1
5
Solved
I have been following In-App update API in Android for quite some time now and I am unable to find any relevance of the following line:
appUpdateInfo.isUpdateTypeAllowed(AppUpdateType.IMMEDIATE)
...
Vintage asked 30/5, 2019 at 12:0
7
I have been trying to implement the Google’s new in-app updates and I am stuck at a point. The issue is first, how can the developer specify the type of update i.e. flexible or immediate while rele...
Photosphere asked 9/4, 2020 at 6:30
2
I am trying to setup the in-app updates dialog in Android but it's not working from the example provided in the docs
I have tried the examples available in the docs which ask you to do this.
app...
Scrutinize asked 28/5, 2019 at 13:44
6
I am using In-App Update API in the application for Update Application while the new version is available in play store.
module gradle
defaultConfig {
applicationId "xxx.xxxxx"
minSdkVersion 21...
Borrow asked 3/7, 2019 at 5:28
3
Solved
I want the users of my app to always have the latest version. If they don't have the latest version, it should download the latest version from play store first as shown in the image.
I found a...
Borghese asked 1/6, 2020 at 9:24
1
Have implemented Immediate In-App Update Workflow in my android app but have been observing this weird behaviour where after downloading/installing the app update, the api does not restart the app ...
Farthingale asked 3/3, 2021 at 6:1
1
We implemented some time ago In App Updates using Google Play Core library, and recently (started on September 8th) to shown on our Crashlytics lots of Install Error (-100) crashes.
Not sure if Goo...
Colet asked 13/10, 2020 at 7:16
0
Issue,
'onActivityResult(Int, Int, Intent?): Unit' is deprecated. Deprecated in Java
As per in-app update docs, the given method requires onActivityResult but that is deprecated.
I can't find any...
Clanton asked 28/10, 2021 at 16:34
4
I am trying to implement android in-app updates. I am following the tutorial given in the official portal but the dialog is not shown when startUpdateflow method is called. Please find below is the...
Quinquereme asked 17/8, 2019 at 8:21
2
As per the documentation,we can use internal app sharing to test in-app updates by performing the following steps:
Make sure your test device has a version of your app installed that supports in-...
Gnu asked 14/6, 2021 at 12:37
0
I am trying to implement in-app updates in my android app following the official documentation.
I launched one version of my app on Play Store using internal testing track followed by another versi...
Blip asked 13/9, 2021 at 5:3
3
Solved
Some log statements are thrown when we use,
Task<AppUpdateInfo> appUpdateInfoTask = appUpdateManager.getAppUpdateInfo();
appUpdateInfoTask.addOnSuccessListener(appUpdateInfo -> {
2019-...
Exhibit asked 13/6, 2019 at 13:11
12
Solved
I am trying to integrate the new In-App Update API but I cannot able to test it's implementation. Seems like my code is fine therefore I read the Troubleshoots and am not able to understand 2 point...
Cerography asked 13/5, 2019 at 19:12
7
Implemented in-app update feature, using the following code snippet:
private void showInAppUpdateDialog(boolean isMandatoryUpdate) {
Task<AppUpdateInfo> appUpdateInfoTask = appUpdateManager...
Lazor asked 17/3, 2020 at 7:47
7
Solved
I recently came across a new kind of app update flow which is provided by Google Play API. I liked this seamless flow to update an Android application. I observed the below mentioned steps in the H...
Chemaram asked 1/5, 2019 at 17:4
1
I am currently working on an implementation of the new "in-app update" library of Google.
According to the documentation, we can prompt a "flexible" or an "immediate" UI to the user. In both case,...
Balakirev asked 29/5, 2019 at 17:8
1
I have integrated the in-app updates feature by Google Play Core library using this link.
I am using immediate update option because we make various critical bug fixes regularly which are importan...
Neutralism asked 24/12, 2019 at 10:20
1
When Users downloads the app via Flexible app update
appUpdateManager?.startUpdateFlowForResult(it, AppUpdateType.FLEXIBLE, activity, REQUEST_CODE_FLEXI_UPDATE)
but forgets or accidentally skips...
Thumbstall asked 31/7, 2019 at 7:25
1
Solved
I can't find out where should I set the update type of "In App Update" feature in google play console.
Otherwise tell me how to use AppUpdateType.IMMEDIATE and AppUpdateType.FLEXIBLE?
Haversine asked 12/11, 2019 at 9:21
1 Next >
© 2022 - 2025 — McMap. All rights reserved.