标签: Android

Windows10, 设备在飞行模式下连接USB后会自动开启网络并注册问题

No Comments

Android’s state is Air Plane mode but it can send and receive call when connect to Windows 10 through USB.
follow step to verify this problem.

1. USB unplugged and go to Windows 10 “Settings” –“Status”–“Change adapter option”
2. Disable “Mobile network(Qualcomm HS-USB WWAN Adapter 9091)” network adapter.
3. Turn on “airplane mode” then connect USB. Read More

Google Attestation key(Qualcomm)

1 Comment

写入Key时通过Debug版本,开机进入主界面后,进行下面准备操作。

adb root
adb disable-verity 
adb reboot
adb root
adb remount
adb shell
device:/ # qseecom_sample_client v smplap64 14 1
Note: Command line arguments do not belong to legacy test
        -------------------------------------------------------
         WARNING!!! You are about to provision the RPMB key.
         This is a ONE time operation and CANNOT be reversed.
        -------------------------------------------------------
         0 -> Provision Production key
         1 -> Provision Test key
         2 -> Check RPMB key provision status
        -------------------------------------------------------
         Select an option to proceed:

Read More

Apache 修改.htaccess 建立服务器返回204解决网络感叹号问题

1 Comment
1.建立自己204服务器

Apache服务器,如果你的服务器安装了rewrite模块,修改网站的根目录的.htaccess。在其中加入以下代码

RedirectMatch 204 (.*)/gen_204$ 
RedirectMatch 204 (.*)/generate_204$

以上内容如果是根目录。访问就是http://example.com/gen_204 或者是http://example.com/generate_204 Read More