1

Good day,

How it's possible to perform auto-update of Android app, without asking a user?

App is not in Google Play.

Best regards.

  • It's not possible, unless the phone is rooted and/or you're running a signed system app. – 323go Jan 27 '13 at 07:26
  • в прошлом году я отвечал на подобный вопрос: http://stackoverflow.com/a/13118943 и с тех пор ничего не изменилось =) – lenik Mar 10 '13 at 00:34

2 Answers2

2

FYI, i just read about this at http://blog.vivekpanyam.com/evolve-seamlessly-deploy-android-apps-to-users/?hn

Evolve is a library for Android Developers that lets them deploy new versions of an app without going through Google Play or asking users to download an update. It works by using reflection and dynamic bytecode generation to "trick" Android into running new code.

Also, the solution at Update an Android app (without Google Play) seems to allow updating Apps without a Play store.

Community
  • 1
  • 1
Barry Staes
  • 3,890
  • 4
  • 24
  • 30
0

You cannot silently install applications on an unrooted Stock Android device for security reasons. It is even clearly stated by Dianne (a Google Employee) here.

Raghav Sood
  • 81,899
  • 22
  • 187
  • 195