This guide provides a clean, safe path to restore your Xiaomi device to factory settings and re-lock the bootloader.
If you find out you do not get messages and cannot send them when you are on a stock rom (at least it happened to me when I flashed stock rom and locked bootloader)
Open the Phone app and dial: ##4636## Go to Phone Information. Scroll to the bottom to find SMSC. Tap Refresh. If it stays blank, you need to find your carrier's SMSC number (Google "Carrier Name SMSC number") and enter it there, then tap Update
Try removing SMS permission for Message app and granting it again
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (async () => { | |
| // ⚠️ Вставь свой актуальный токен сюда | |
| const TOKEN = "my vault token"; | |
| // В данном случае я переношу енвы из pkbbridge/dev в bnpl/pkbbridge/dev | |
| const sourceBaseUrl = "https://vault-url.com/v1/secret/pkbbridge/dev/data"; | |
| const destBaseUrl = "https://vault-url.com/v1/secret/bnpl/pkbbridge/dev/data"; | |
| // Динамически собираем ключи прямо из DOM-дерева страницы | |
| const keys = [...document.body.querySelectorAll('.list-item-row')].map(element => element.textContent.trim()); |
OlderNewer