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

The app asks for update even after a successful update process(In-app-update)

Implemented in-app-update feature in my app. The app asks for update when there is an update available. When i hit the update button it goes to download screen and the app gets a restart after the download is complete with result code =…
0
votes
0 answers

Android InAppUpdate crash on firebase

I am using an inAppUpdate inside my Flutter project and invoking Android's InAppUpdate API through a method channel. But getting a fatal crash on Firebase. Here's the stack trace: Fatal Exception: java.lang.RuntimeException:…
Anirudh Sharma
  • 657
  • 7
  • 19
0
votes
0 answers

my flutter app is not install from play store after update the new version in play store

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 app but it don't get any update in the app then I try…
0
votes
0 answers

Android AppUpdate not working properly with arrow function

I have followed the in-app update of android to check the in-app update prompt. But it failed to show the prompt in some apps. I have noticed that the while debugging the debugger not entered into the arrow function for some of the apps(multiple…
sejn
  • 2,040
  • 6
  • 28
  • 82
0
votes
0 answers

How to test In app update in xamarin forms without updating app to play store/Appstore (used Xam.Plugin.LatestVersion to show alert for app update)

I am using Xam.Plugin.LatestVersion to check whether a update of app is available. I have added the bleow code App.xaml.cs if (!VersionTracking.IsFirstLaunchEver) { string latestVersionNumber = await…
0
votes
0 answers

Unable to see the in-app prompt in Android version 11 and above

Unable to see the in-app prompt in Android version 11 and above. I have used the in-app to see the prompt in the app. But it failed to show the prompt in android versions 11 and 12. I have added the below code in my fragment. Note: If I add it in…
sejn
  • 2,040
  • 6
  • 28
  • 82
0
votes
1 answer

How to customize the Google Play Store DEFAULT in-app update popup

Any option to customize the Google play update the default prompt from the google-play-core library. I need a customized popup. I have followed this doc to achieve in-app update modal. https://developer.android.com/guide/playcore/in-app-updates
sejn
  • 2,040
  • 6
  • 28
  • 82
0
votes
0 answers

for plugin in_app_update, Type mismatch: inferred type is String? but String was expected

This is in my flutter project which was working good yesterday before flutter upgrade, and after that I updated my kotlin version too. I am using in_app_update plugin version 2.0.0 package de.ffuf.in_app_update import android.app.Activity import…
Ali Punjabi
  • 452
  • 4
  • 19
0
votes
2 answers

Option for OTA Update In React Native without expo. are using code push fully free for ota update?

Hi Guys I want to implement OTA update in react native. I found an option using Codepush app center, but is it fully free for OTA update? because I saw pricing page. Is there any better option? thanks A free OTA update service and can be implemented…
0
votes
0 answers

Problem with apk update inside the program

My function for downloading apk and installing it is this, but even though the apk is downloaded successfully and saved, I get an error during installation. String destination =…
0
votes
0 answers

Android In-app update library causing memory leaks

I am using in-app update library and I noticed that it is leading to a memory leak. Here is my code: class ForceUpdateBaseActivity : AppCompatActivity() { private val realtimeDatabaseService: RealtimeDatabaseService by inject() private var…
srisindhu saride
  • 391
  • 6
  • 25
0
votes
0 answers

In-App Update: clientVersionStalenessDays is always null in internal track

According to the documentation you can check how many days the update became available in the store with clientVersionStalenessDays. Upon testing it the value is always null and upon reading the method's documentation it says that sometimes that…
0
votes
1 answer

In-App Update Dialog Still showing after updating the app

I'm using the in app update api for getting new update for my app but I'm still getting the update App dialog after update the App from Play store while testing the release signed apk . Please help me why I'm getting the update app option when it's…
0
votes
0 answers

Difference between Google In-App Updates with KTX and without KTX

Planning to implement In-App Updates in a project that is available in Play Store. However I have a question for the setup. Sine the project is in Kotlin, can we add the ktx dependency only and leave the first one? implementation…
0
votes
0 answers

Android - App force update for old and new app versions

I am trying to implement app in-app updates stated here: https://developer.android.com/guide/playcore/in-app-updates. But what i wanted to know is that we have already older versions in playstore and i want to update all users to new versions. Is…
srisindhu saride
  • 391
  • 6
  • 25