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...
To make J2ME Apps or maybe games, you will need to install OpenJDK (done via `apt install openjdk-xx` xx is the version number), Download the CLDC&MIDP jar files (download them from jarcasting ). Create a new java file for the main program, called HelloMIDlet.java: ``` import javax.microedition.lcdui.*; import javax.microedition.midlet.*; public class HelloMIDlet extends MIDlet { private Display display; private Form form; public HelloMIDlet() { form = new Form("Hello World from J2ME!"); } protected void startApp() { display = Display.getDisplay(this); form.append(new StringItem("Message:", "Hello, World!")); ...