[Bug report] failed to synchronize resources, not authorized to synchronize resources, please stop running and then run again, and pay attention to the authorization prompt on the phone

bug screenshot

 

scene description

At the beginning, it compiled and ran normally. Since I felt that there were some strange bugs in the application page, I thought about uninstalling and re-running the installation and debugging base. After uninstalling, the running will still appear . Obviously I have uninstalled the application, and this situation will still occur. Later, various Baidu red font errors were reported, and no solution could be found.

 

solution

I still focused on my initial question, why did I skip the base update after uninstalling the app? So how did Baidu delete the debugging base on the mobile phone completely, but also searched to no avail. Due to the adb connection used during real machine debugging, the connection steps were connected according to Baidu's instructions, and I was confused, so I searched for adb instructions, and it turned out that the mobile phone can be operated through adb instructions.

adb command: commonly used adb command to organize_thundersoft230's blog-CSDN blog_adb command

I saw the arrangement of this blogger.

So: adb shell pm list package -3 to find installed third-party applications

 

 I found HBuilder from it, and uninstalled the base application through adb uninstall io.dcloud.HBuilder

 

Uninstallation succeeded.

Sure enough, as expected, re-running is OK.

For a custom base, you need to find the name of the custom installation package at that time, in the same way.

Just a little record, it bothered me for a long time. ! ! ! !

Guess you like

Origin blog.csdn.net/weixin_45848862/article/details/127802868