初始化指令流引擎,传入IP地址、端口以及服务端云手机分辨率信息。
指令流引擎对象已创建。
调用指令流引擎初始化接口。
1 2 3 4 5 6 7 8 | public class Activity implements BaseActivity { protected void onCreate(Bundle savedInstanceState) { int initResult = engine.initialize(); if (initResult != InstructionEngine.VMI_SUCCESS) { // 初始化失败,退出处理 } } } |