Trích dẫn Gửi bởi greensky20
Trong folder cài đặt của Blend có file này "com.rim.blackberryblend.lua", nội dung như sau.
Theo suy đoán 0x8012 và 0x8017 là mã của PP và em P9 kia.


Mã:
return {
    AppID = "com.rim.blackberryblend.lua",
    Priority = 100,

    DeviceArrival = function(device)
        if device:GetProperty("IsQnxDevice") == "1" then
            local productId = tonumber(device:GetProperty("Product ID"))
            local args = string.format("--launchagent %x",device:GetProperty("BBPIN"));
            if productId ==0x8012 then
                local osver = device:GetProperty("OSVersion")
                if osver and tonumber(string.match(osver, "(%d+).%d+.%d+.%d+"))>=10 then
                    LaunchRelative("Blend.exe", args, false)
                end
            end
            if productId ==0x8017 then
                LaunchRelative("Blend.exe", args, false)
            end
        end
    end
}
vậy mình có thể add mã máy của bb z10 vào được không