How to install an apk directly from my application, with Titanium studio?

Asked

Viewed 463 times

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?

  • 2

    puts the .apk in device memory and run it

  • @Math is correct. Just configure the device development options to allow this.

1 answer

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

You are not signed in. Login or sign up in order to post.