Best way to install my POS app from android studio

Hi - We are trying to install/load our app to the poynt terminal as per the instructions from your FAQ’s,

https://poynt.github.io/developer/doc/developer-faqs.html

But unfortunately, when I connect my device to the terminal (via micro usb port), and try to install my app from android studio, but the connection says the device is OFFLINE and am unable to install my app to the terminal.

What are the steps to load my app onto the terminal?

Appreciate your help!

Hello there. Is your device in Developer Mode? (see https://poynt.github.io/developer/tut/developer-mode.html). If your Poynt device is in developer mode, the most fool-proof way to load your app onto the device is using the adb command line tool.

From the command line, run:

adb devices

If your device is connected and detected, you should see something like this:

List of devices attached P61ABC100FS001234 device

Next, install your built APK with:

adb install your.apk

1 Like