Questions tagged [android-update-app]
73 questions
1
vote
0 answers
Google Play update failure
I had an android app that I developed a couple of years ago (version 6) and I have just updated it several times this week and changed everything completely (now version 12). I have just realized that the update is not really effective on google…

Ahmed Ayoub
- 41
- 1
1
vote
0 answers
ACTION_MY_PACKAGE_REPLACED not received when app is forced closed
I have a notification about new things added to my app. It registers a BroadcastReceiver and listens for Intent.ACTION_MY_PACKAGE_REPLACED. It works fine and I do receive it and can show my notification. It even works when I close the app via…

serine
- 1,338
- 14
- 24
0
votes
0 answers
Google Play Store - Unable to Install App on Tablet Device. While trying to install it show this error- Your device isn't compatible with this version
Android Tablet - Your Device isn't compatible with this version
I have my android app published in google play store with considerable number of installations. Recently i have released a new version(Update).
For Mobile device users everything was…
0
votes
2 answers
How can flutter app gets the new version update from the play store or the Apple Store automatically
How can we make the flutter app to make automatic update whenever we release a new version of the app into the store. but I don't want to use the pop up to alert the user to update I want to update automatically without letting the user even know we…

Flutter Dev
- 488
- 3
- 18
0
votes
1 answer
flutter new_version works only with "com.snapchat.android" but not with "com.whatsapp"
this code works
void _checkVersion()async{
final newVersion=NewVersion(
androidId: "com.snapchat.android",
);
final status=await newVersion.getVersionStatus();
if(status?.canUpdate==true){
newVersion.showUpdateDialog(
context: context,
…

Ulrich Sah
- 1
- 1
0
votes
1 answer
In-app update API returns UPDATE_NOT_AVAILABLE status
I uploaded two bundles to Google Play Console - 19 and 20 code version.
I opened the internal sharing app link of 19 code version of the app and installed it:
But when I launch the app In-app update API returns UPDATE_NOT_AVAILABLE (== 1)…

user924
- 8,146
- 7
- 57
- 139
0
votes
0 answers
Downgrade application to a lower versionCode when user chooses to do so
The application I am working on is hosted on a private site(not in any of the app stores).
I want to give users the option to select any version of apk needed for them. There is no problem when updated to a higher version but installing lower…

arnis
- 1
- 2
0
votes
1 answer
How to change the version number and build number while updating an app in the Google Play Console?
This is the first time I am trying to build and release a mobile app (Android). I have used Flutter for developing the app.
After developing the app I have successfully released (internal-test-release) the app to Google Play Console. There were so…

Dipak
- 6,532
- 8
- 63
- 87
0
votes
0 answers
Can you get a list of available updates for app (in-app updates)
With in-app updates we are able to check whether there's an update available for our app. We are also able to set a priority (an integer between 0-5) for the update when creating the release.
Now let's assume the user doesn't use the app for a…

user3479222
- 1
- 1
0
votes
0 answers
Update android debug app causes "app is not installed" (no google play)
I am trying to make possible for users to update ann app from device. We have a server where from user can download apk file with new version of an app.
Here is the code which starts after button pressed:
Handler handler = new…

Alex Rmcf
- 804
- 7
- 14
0
votes
0 answers
App Not Installed when trying to update unsigned APK
I am trying to update my current unsigned app with new version unsigned app but it always is giving error like "App Not Installed".
Is there any reference which say unsigned apk can not be installed.
Here is my code :
try {
File file =…

Sandip Armal Patil
- 6,241
- 21
- 93
- 160
0
votes
0 answers
How to check if update is available from my installed app?
I create a list of my installed apps using PackageManager, But I want to know if the app has a new version on it so I can update it from that list.
Any idea?
this is the detail I got from PackageManager
Log.v("/asd/",…

Antony Sunggaki
- 191
- 8
0
votes
0 answers
How do I force update and app flawlessly?
We have an ionic-capacitor app. The issue is that after we are updating a new version of the app to the play store and receiving the confirmation email that it has been uploaded, for some devices the update is not available.
Meaning, when user loads…

Lishar Bahar
- 11
- 2
0
votes
1 answer
App not installed issue after signing & updating the apk
I'm trying to update the existing App in Playstore.
Signed the APK & generated it with the existing jks file, but getting "App not installed" issue while trying to update on the old App.
What can I do to resolve this issue?

basha
- 587
- 2
- 6
- 25
0
votes
0 answers
Changing manifest installLocation parameter on updates
Does anyone know what the impact of changing the Android Manifest setting
android:installLocation="auto"
to
android:installLocation="internalOnly"
on an UPDATE to an already installed app for a user? I'm worried about people who may have moved…

iaindownie
- 1,046
- 12
- 28