0
I need to be able to update an application, without the need for it to be in the Play Store or the client to access the internet to download it. I need something automatic, but without customer interaction. Is it possible? How can it be done?
0
I need to be able to update an application, without the need for it to be in the Play Store or the client to access the internet to download it. I need something automatic, but without customer interaction. Is it possible? How can it be done?
1
If you just want to install you can use the adb... instead of transferring to the memory of the cell phone.
adb install -r /caminho/do/arquivo.apk
Obs.: the apk file needs to have the same signature if Voce is updating.
Browser other questions tagged android mobile
You are not signed in. Login or sign up in order to post.
puts the
.apk
in device memory and run it– Math
@Math is correct. Just configure the device development options to allow this.
– Oralista de Sistemas