# 通过 Android Global Setting 初始化
需 WMPF >= 2.2.0 支持(仅车机体验版本)
如果你只希望体验车机版 WMPF,你可以通过 Global Setting 写入 WMPF 的激活信息来直接激活 WMPF,无需接入 wmpf-cli 或者安装 WMPF Launcher Demo。
参数 | 说明 |
---|---|
com.tencent.weapp.host_appid | 微信开放平台注册移动应用后获取的appId。该appId与小程序appId无关 |
com.tencent.weapp.ilink_product_id | WeCooper 平台审核通过后分配的 productId |
com.tencent.weapp.ilink_key_version | WeCooper 平台上传公钥后分配的 keyVersion |
com.tencent.weapp.ilink_device_id | 接入方分配的设备Id,该 id 应该已经通过 addDevice 接口在微信注册 |
com.tencent.weapp.ilink_device_signature | 由接入方通过 productId,deviceId,privateKey 经过运算后得到的签名(不需要换行符) |
# 示例代码
adb shell settings put global com.tencent.weapp.ilink_support 1
adb shell settings put global com.tencent.weapp.host_appid "HostAppID"
adb shell settings put global com.tencent.weapp.ilink_product_id "ProductID"
adb shell settings put global com.tencent.weapp.ilink_key_version "keyVersion"
adb shell settings put global com.tencent.weapp.ilink_device_id “DeviceID”
adb shell settings put global com.tencent.weapp.ilink_device_signature “DeviceSignature"
# 注意事项
车机体验版本的 WMPF 不需要写入 com.tencent.weapp.ilink_product_id
、com.tencent.weapp.host_appid
,由 WMPF 固定填写体验版参数。