Android Install APK: Difference between revisions

From embeddedTS Manuals
(Created page with "You can install an APK using the standard development steps with adb, or you can do this entirely without the USB OTG connector. From the stock Android go to the application ...")
 
No edit summary
 
Line 1: Line 1:
You can install an APK using the standard development steps with adb, or you can do this entirely without the USB OTG connectorFrom the stock Android go to the application menu at the bottom and open the Settings application.
APKs can be installed just like on any other Android deviceOn the device go to settings->About Tablet and press the "build number" until the text states "You are now a developer". Go back to Settings and there is now a "Developer Options" menuUnder Debugging enable USB Debugging.   You should now be able to run adb commands to install apk files.
 
<source lang=bash>
Go to security and check "Unknown sources" and press OK.
adb install </path/to/app.apk>
 
</source>
Go back to settings and open the browserEnter in the browser the address for the APK.
 
Once downloaded, swipe down on the notification tray at the top and click on it.  It will ask you if you want to install the apk with any listed permissions. Click install and you can run your application.

Latest revision as of 16:25, 31 August 2017

APKs can be installed just like on any other Android device. On the device go to settings->About Tablet and press the "build number" until the text states "You are now a developer". Go back to Settings and there is now a "Developer Options" menu. Under Debugging enable USB Debugging. You should now be able to run adb commands to install apk files.

adb install </path/to/app.apk>