How to Set Up Test Environment

  1. Push files to the device.
    adb push permission_ignite_com.dti.atttv.xml /data/local/tmp/
    
    adb push whitelist_com.dti.atttv.xml /data/local/tmp/
    
    adb push Ignite-tvAttIgniteAgent_7.1.197-dev_release.apk /data/local/tmp/
  2. Install files on device.
    adb shell
    
    su
    
    mount -o rw,remount /system
    
    mv /data/local/tmp/permission_ignite_com.dti.atttv.xml /system/etc/permissions
    
    mv /data/local/tmp/whitelist_com.dti.atttv.xml /system/etc/sysconfig
    
    mv /data/local/tmp/Ignite-tvAttIgniteAgent_7.1.197-dev_release.apk /system/priv-app
    
    pm install /system/priv-app/Ignite-tvAttIgniteAgent_7.1.197-dev_release.apk
    
    reboot

Back to Top ⇧