2

I'm developing an application with a large data. It takes a long time to upload/download to server (around 1 hour).

I'm understanding that:

  • When uploading if having a new version up in Google Play, Android system will break uploading and update new app. Is my understanding ok?

  • I want, my app doesn't update automatically. User must finish uploading before update a new version.

How to disable auto update option in Google App by programming?

2 Answers2

1

You cannot do that. This Answer may help you understanding why it is not possible.

Alireza Noorali
  • 3,129
  • 2
  • 33
  • 80
0

Im running as root and this command work for me:

adb shell pm disable-user com.android.vending

and then there is no Playstore on my andriod device.

for revert run this command:

 adb shell pm enable com.android.vending

if you not root you can try:

adb shell pm disable-user --user 0 com.android.vending
Naor Yael
  • 69
  • 4