Questions tagged [android-update-app]

73 questions
66
votes
26 answers

Bumblebee Android studio Plugin [id: 'com.android.application', version: '7.1.0', apply: false] was not found in any of the following sources:

I updated my android studio from Android studio fox to Android studio Bumblebee 2021.1.1 but none of my projects can run in Android studio Bumblebee 2021.1.1. I ended up getting this beautiful error. Here is my gradle file plugins { id…
52
votes
6 answers

How to autoupdate android app without playstore? Like Facebook app or any Contest app

How do apps update internally automatically without updating from playstore? I mean the internal data of app is changed (via internet) without updating from playstore. For eg any Contest app, or Facebook app. Here the newsfeed is updated…
ankush kapoor
  • 533
  • 2
  • 6
  • 6
12
votes
1 answer

How to get a list of installed apps in Android 11

This line is described on the developer site but I did not understand it perfectly Call getInstalledApplications() or getInstalledPackages(). Both methods should return a filtered list. Actually, I need to test Testing package visibility…
9
votes
2 answers

Android application life cycle when application is being updated by Play Store

I can't find information about app's process life cycle when application is being updated by Play Store. For example when app's process is running and some Service does something and then update starts, I expect that after apk is successfully…
Marian Paździoch
  • 8,813
  • 10
  • 58
  • 103
5
votes
1 answer

How to update android app automatically without Google Play or user interaction

I'm developping an application that will run on a tablet device in a store (e.g. restaurant). The device does not have Google Play and is rooted. How do I install an update to my application automatically, with absolutelly NO user interaction? To…
knezmilos
  • 517
  • 1
  • 8
  • 19
4
votes
4 answers

App update getting rejected over and over on Play Store, in spite of removing SMS or CALL LOG permission

I was facing a issue while uploading my apk. Play console was not allowing me to upload the apk and was giving this error "You can't edit this app until you create a new app release declaring sensitive permissions.". I faced this issue after…
Salman Shaikh
  • 589
  • 6
  • 19
3
votes
0 answers

Android Management API policy kiosk mode - System Update not applied during maintenance window

I am now to using Android Managment Api to create Kiosk devices for my company. I wanted to create Kiosk device with my kiosk App locked to screen and the screen will never dim (this achieved within kiosk App with the android:keepScreenOn="true"…
3
votes
2 answers
2
votes
0 answers

Unable to download internal testing build in version 9 devices

An internal test version has been launched as an update of existing playstore application. And tried the link given after application approval. It is available for download on all devices, except Android 9 devices. I've tried with every internal…
2
votes
0 answers

Android in-app update shows wrong availableVersionCode (88) in AppUpdateInfo

I'm trying to implement an in-app update-dialog for my android app written in java. The code snipped to check if an update is available, is taken from the android developer page. It's called in the onResume() method of the the Main activity. private…
iscod
  • 21
  • 2
2
votes
3 answers

Install new version of Android app programmatically

The Story Now I am working on a project where an Android application is running on a custom device and this app is not installed through the Play Store, but the APK file is manually uploaded, installed and launched on the device. The problem here is…
MrVasilev
  • 1,503
  • 2
  • 17
  • 34
2
votes
1 answer

Android studio not updating from 3.0 to 3.0.1

I am using Android studio 3.0, Android studio give a dialog to update Android studio 3.0.1 When i click on update link it show a dialog I click on update and restart button after downloading Android studio restart but the new updated version…
Pradeep Kumar
  • 586
  • 3
  • 19
2
votes
0 answers

realm database resetting after installing new app update

During usage the realm database is working great but I noticed during an update of my application from the play store the data I had from my previous version was wiped. Heres what happened: I made some UI changes to the app, so the realm schema…
ZarifS
  • 467
  • 1
  • 11
  • 20
2
votes
1 answer

How to upgrade an SQLite table in app without SQLiteOpenHelper

I have created a table in my app: public static SQLiteDatabase attendancedb = this.openOrCreateDatabase("Attendance", Context.MODE_PRIVATE, null); attendancedb.execSQL("CREATE TABLE IF NOT EXISTS attendance ( subName VARCHAR , attend VARCHAR,…
iamanbansal
  • 2,412
  • 2
  • 12
  • 20
2
votes
1 answer

Sync hosted Apk in local server with Play store version

We have an app published to Google Play, and need to be able to download it in an internet restricted environment. So after hosting that Apk on local server (as mentioned in Distribute android app from my own server), is there a way to have the…
Abu Ruqaiyah
  • 1,516
  • 1
  • 12
  • 20
1
2 3 4 5