How to install a direct apk from my application, with titanium studio?

0

I need to be able to update an app, without the need for it to be in the Play Store or the customer accessing the internet to download it. I need something automatic, but without customer interaction. It's possible? How can it be done?

    
asked by anonymous 05.03.2014 / 15:49

1 answer

1

If you just want to install you can use adb ... Inves to transfer to the phone memory.

adb install -r /caminho/do/arquivo.apk

Note: the apk file must have the same signature if you are upgrading.

    
05.03.2014 / 17:16