在手表上使用微信儿童版教程
准备工作
- 带有 adb 环境的电脑
- 基于 Android 的手表
- 可以使用的 license
关于 licenselicense 是微信推出的限制设备登陆的验证,可以设备出厂时预置,通过厂商服务器下发或者根据教程添加, 儿童微信只能在有 license 的设备上运行 字段类型和名字如下: 字段类型 | 名字 | 相关作用 | int | ilink_product_id | 产品 id | int | ilink_key_version | 版本 | int | ilink_support | ilink_support =1 表示手表支持运行微信 | string | ilink_device_id | 设备 id | String | ilink_device_signature | 验证签名
|
微信会封 license,不可以公开license 获取 license 与微信合作
(个人基本没可能,厂商合作用的)
(1)购买 license (风险自负,不推荐,但方便)
在闲鱼上与卖儿童表的协商购买其 license 使用
(2)提取 license 在能正常使用儿童版的手表上提取 license ,并移植使用(tips:一个license可以给7台手表一起使用)
在可以使用微信儿童版的手表连接上电脑 adb
有线充电手表一般可以直接插线连接,无反应以及无线充电手表可以通过无线 adb 连接
连接带 license 儿童表 打开adb命令行 并输入 adb shell settings list global
如果您不想自己编辑,那请您尝试使用 本站提供的一键处理器 (微思论坛Small工具) WYS TEAM BBS认证:完全前端(本地)处理,不用担心泄露问题
如图 其中红框中圈出的 ilink 开头的内容即为 license保存红圈中的 ilink_XXX 内容安装 license
在你要使用的手表中使用 adb shell settings put global 命令添加 license 到手表(下列代码仅作为演示,请使用你自己的 license
adb shell settings put global ilink_device_id "18xxxxxxxxxxx91"
adb shell settings put global ilink_device_signature "Mxxxxxxxxxxxxx0FzM4="
adb shell settings put global ilink_key_version "1"
adb shell settings put global ilink_product_id "2xx4"
adb shell settings put global ilink_support "1"
|