Skip to main content

APK Installation

Written by Giuseppe

Prerequisites:

For this installation you will require the following components:

Sony Bravia display running Android 10

Installation:

  1. Enable developer mode on the device by going to Settings > System > About > and then click 7 times on the build number.
    In Developer options please enable ADB Debugging, once the Allow USB debugging pop-up appears, select the ‘Always allow from this computer’ check box and select Allow.

  1. Connect to the device with adb using the command prompt (commands need to be sent from the folder ADB is installed on):
    ./adb connect device_ip
    *If you receive the message “No connection made because the target machine actively refused it” please make sure that the ADB Debugging mode has been enabled. This can be found under System > Developer Options > ADB debugging*

  2. Install the device owner package:
    ./adb install D:\path_to_apk\device_owner.apk

  3. Declare the service as device owner:
    ./adb shell dpm set-device-owner com.navori.sony.deviceowner.service/.MyDeviceAdminReceiver

  4. grant it WRITE_SETTINGS permission:
    ./adb shell appops set --uid com.navori.sony.deviceowner.service WRITE_SETTINGS allow

  5. Install QL:
    ./adb install D:\path_to_apk\Conductor_Sony.apk

  6. Start the conductor:
    ./adb shell am start -n com.navori.conductor/com.navori.conductor.MainActivity

  7. Proceed with the license activation as with any Android device

Did this answer your question?