Langsung ke konten utama

How to fix Mi Account "Couldn't check device security info" and adding a phone number

 For fixing the "Couldn't check device security info" when we're trying to sign in to our Mi Account on the Xiaomi Account app is quite simple: download the latest Mi Account apk from Google, pick any trusted site like for example from apkmirror.

Install the latest app then try to sign in from the Mi Account in the Setting.

To add a phone number which is we won't be able to do that from our device since there's no such setting in the "Account Security" section.

Go to i.mi.com and sign in, you'll be shown with a page that looks like a Home screen with bunch of apps.

Select either "Recording" or "Contact" app there and you shall be prompted to add your phone number.

Add your phone number starting with the country code and followed by the phone number.

You'll be receiving a verification code via SMS, and done you have added your phone number.

You can then go to Mi Account from your phone Setting to confirm it.

I already had a phone number linked to my account earlier but it doesn't showed up on my account maybe because i don't insert the SIM card since it was already gone.

And thankfully i can add another new phone number to my old account with that trick.

I dont know what my old number is used for right now since it doesn't appears on my account.

Now you can do things that needed your Mi Account and phone number/SIM like "Install via USB", or "USB debugging" to simulate input.

Disclaimer that you have to insert your linked phone number SIM card on the first slot otherwise it won't work.

Source: https://www.reddit.com/r/LineageOS/comments/1d6y974/comment/lfhszom/

Komentar

Postingan populer dari blog ini

How to export Godot game to Android from Linux

1.Go to Editor -> Manage export template -> Download and install ->Close. 2.Download command-tools cli for linux at https://developer.android.com/studio/ # command-tools .  Scroll down until you see the Command line tools  section. Then add `export ANDROID_HOME="/path/to/android-sdk"`  to your  `.bashrc`  or  `.zshrc` (for other shell, try to edit it accordingly), and unzip the file to: `/path/to/android-sdk/` Example: `$HOME/Android/android-sdk` 3.Download Openjdk latest version. Set JAVA _HOME  to your `.bashrc` : `export JAVA_ HOME=$(which java|rev|cut -d'/' -f3-|rev)` Install required tools&packages from sdkmanager: `$ANDROID _HOME/cmdline-tools/bin/sdkmanager --sdk_ root=$ANDROID_HOME "platform-tools" "build-tools;34.0.0" "platforms;android-34" "cmdline-tools;latest"` "cmake;3.10.2.4988404" "ndk;23.2.8568313" You can also choose which version you want to download, just playing around wi...

how to install postgresql and use it with php on termux

first of all you need to install it: apt install postgresql then specify data dir for it by typing: initd -D YOUR_DATA_DIR example YOUR_DATA_DIR is /data/data/com.termux/files/home/mydb note that you don't need to make the dir first, you just need the dir name then initdb will create it automatically :) in this example like this: initdb -D /data/data/com.termux/files/home/mydb The files belonging to this database system will be owned by user "u0_a171". This user must also own the server process. The database cluster will be initialized with locale "C.UTF-8". The default text search configuration will be set to "english". Data page checksums are disabled. creating directory test ... ok creating subdirectories ... ok selecting dynamic shared memory implementation ... sysv selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting default time zone ... Asia/Jakarta creating configuration files...

Running proot program over termux xorg

  # Running xorg and xvfb on Termux pkg add tur-repo apt update -y && apt upgrade -y pkg install x11-repo # Mempermudah nantinya apt install fish starship pulseaudio tmux -y chsh -s fish exit # Kembali ke termux dan ini hasilnya: # Beri akses ke internal storage termux-setup-storage # Install xorg-server apt install xorg-server xorg-server-xvfb -y # Sampai sini harusnya akan ada error muncul jika mencoba menjalankannya: # Fix error dengan cara install mesa zink apt install mesa-zink/tur-packages # Install xwayland untuk termux-x11 apt install libwayland-protocols libepoxy xwayland # Download termux-x11 .zip dari github lalu extract file zip-nya dan install file termux-x11.apk dan .deb-nya (dengan cara dpkg -i file.deb) # Kenapa install dari github? Karna termux-x11-nightly dari repo termux bermasalah # Setelah semua selesai, tinggal install program yg membutuhkan X server, misalkan xterm (30MB) atau openbox (700MB) apt install xterm -y # Jalankan X11 DISPLAY=:0 termux-x11 #...