Skip to main content

Android Common Codes

#Part1



Testing Menu
*#*#4636*#*#

Display Info about device
*#*#4636*#*#

Factory Restore
*#*#7780*#*#

Camera Information
*#"#34971539*#*#

Completely Wipe device, install stock firmware
2767*3855#
*
Backup all media files
*#*#273283*255*663282*#†#

Wireless LAN Test
##232339## OR ##526##

Change Power button behavior
##7594##

Quick GPS Test
##1472365##

Test mode for service activity
##197328640##

Wi-Fi Mac Address
##232338##

Another GPS test
##1575##

Packet Loopback Test
##0283##

Audio Test
##0673## OR ##0289##

Vibration and Backlight test
##0842##

Check touch screen version
##2663##

LCD test
##0*##

Touch Screen test
##2664##

Proximity sensor test
##0588##

RAM version
##3264##

Bluetooth test
##232331##

Field Test
##7262626##

Check Bluetooth device address
##232337##

Google Talk service monitoring
*##8255##

PDA, Hardware, Phone and RF Call Date info
##4986*2650468##

PDA and Phone firmware check
##1234##

FTA hardware version
##2222##

FTA software version
*##1111##

Displays IMEI number
#06#

Enables voice dialing logging mode
*##8351##

Disables voice dialing logging mode
##8350##

Brings up Epst menu
##778 +call

Displays Build time and change list number
##44336##

Remove Google account setting
##7780##

Reinstall the firmware
2767*3855#

Used to enter into Service mode
*##197328640##

Battery Status
#0228#

Data create menu
*#273283*255*3282#

Data usage status
#3282*727336#

OTA update menu
#8736364#

RF band selection
*#2263#

Diagnostic configuration
*#9090#

USB 12C mode control
*#7284#

USB logging control
*#872564#

Debug dump menu
*#746#

System dump mode
*#9900#

Shows Build time change list number
*##44336##

NAND flash serial number
#03#

Real time clock test
*#0782#

Light sensor test
*#0589#

Quick test menu
*#7353#

Execute from Emergency dial screen to unlock
PUK code
05#


┏━━━━━━━━━━━━━━━━━━
    Telegram Channel            
┗━━━━━━━━━━━━━━━━━━


Message me for any support or suggestions always here
 



Comments

Popular posts from this blog

How to find isp gateway

 Certainly, here's a step-by-step guide to finding your ISP gateway: Step 1: Check your Router or Modem - Physically inspect your router or modem. - Look for a label or sticker that contains information about your device. - Search for details such as the default gateway IP address. Step 2: Use the Command Prompt or Terminal - On Windows: Press the Windows key, type "cmd," and press Enter to open the Command Prompt. - On Mac: Open the Terminal from the Applications folder or by searching for it. - On Linux: Open the Terminal from your applications menu. - Type "ipconfig" on Windows or "ifconfig" on Mac and Linux and press Enter. - In the output, locate the "Default Gateway" information. This is your ISP gateway's IP address. Step 3: Access your Router's Web Interface - Open a web browser (e.g., Chrome, Firefox, or Safari). - In the address bar, enter the default gateway IP address you found in Step 2. Typically, it's something like...

Setting up a free SMTP server for sending emails

Setting up a free SMTP server for sending emails typically involves using an email service that offers free SMTP access. Here's a general guide on how to set up SMTP for free: 1. **Choose a Free Email Service**: There are several email providers that offer free SMTP servers, including Gmail, Yahoo Mail, and Outlook.com. Choose the one that suits your needs. 2. **Create an Email Account**: If you don't already have an email account with the chosen provider, sign up and create one. Make sure to remember your email address and password. 3. **Enable SMTP Access**: Some email providers may require you to enable SMTP access for your account. This is often found in your account settings or security settings. Enable SMTP access if required. 4. **Obtain SMTP Server Details**: Your email provider will have specific SMTP server details you need to use. These typically include:  - SMTP Server Address (e.g., smtp.gmail.com for Gmail)    - SMTP Port (e.g., 587 for STARTTLS or 465 for SSL/T...

To link an HTML file to a Python script

To link an HTML file to a Python script, you typically need to use a web framework that can handle the HTTP requests and responses. One popular framework for this purpose is Flask. Here's a step-by-step guide on how to link an HTML file to a Python script using Flask: 1. Install Flask: Make sure you have Flask installed. You can install it using pip by running the following command in your terminal or command prompt: ```    pip install flask    ``` 2. Create a new directory for your project and navigate to it in your terminal or command prompt. 3. Create a new Python script, let's say `app.py`, and open it in a text editor. 4. Import the necessary modules:    ```python    from flask import Flask, render_template, request    ``` 5. Create a Flask application:    ```python    app = Flask(__name__)    ``` 6. Define a route for your HTML file:    ```python    @app.route('/')    def index():        return render_template('index.html')    ``` 7. Save the following ...