Pilih perangkat ADB untuk menginstal APK

Yes, you can install an apk on a particular device.

In command, type:

adb devices
// list of devices and its unique ID...

Then type:
adb -s "<deviceIDfromlist>" install "<path-to-apk>"
Coding Era