就是像是在瀏覽器內下載頁面內安裝下載App,就會出現叫你登入
然後我就滑道後台,出現下面這個,所以推測移除下面這個

或是刪除這個,應用程式加密的那功能

列出所有的包名(手機要啟用開發者模式)
adb shell pm list packages
篩選是加上 | findstr
adb shell pm list packages | findstr APP_NAME
有人找到到的話可以點一下嗎?
更新 2020/12/10
檔使用者隨意安裝的東西是這個 coloros.safecente
沒有root 的情況下執行adb shell pm disable-user com.coloros.safecenter
會是Package com.coloros.safecenter new state: enabled
是無效
所以必須root「請看我整理的 root文章」
在停用 coloros.safecente
先adb shell
su
pm disable-user com.coloros.safecenter
得到 Package com.coloros.safecenter new state: disabled
另外關掉後畫面懸浮通知將會不可以管理,因此,最好是都設定完畢後在關,要不然哪天某應用需要就得打pm enable設定































































































