- Android Bluetooth List Paired Devices with Examples
- Android Bluetooth List Paired Devices
- Android List Bluetooth Paired Devices Example
- activity_main.xml
- MainActivity.java
- AndroidManifest.xml
- Output of Android Bluetooth List Paired Devices Example
- How to Display Bluetooth Paired Devices Programmatically in Android?
- Step by Step Implementation
- How to Programmatically Pair or Unpair Android Bluetooth Device
- Paired Device List
- Related Searches
- Listing Of Websites About paired device list
- Android Bluetooth List Paired Devices with Examples — …
- Android bluetooth list paired devices example — javatpoint
- See All Devices Connected to Your Windows 10 Computer .
- How to Pair a Bluetooth Device to Your Computer, Tablet .
- Android bluetooth: Paired devices list — Stack Overflow
- Windows mobile:Bluetooth paired device list shows .
- Paired bluetooth speaker is not listed as an audio device .
- How to manage Bluetooth devices on Windows 10 | …
- android — How to get the bluetooth devices as a list .
- How to Display Bluetooth Paired Devices Programmatically .
- Can’t remove paired bluetooth devices in Windows 10 .
- Android Bluetooth List Paired Devices — W3spoint
- Check your Apple ID device list to see where you’re signed .
- Bluetooth Is Paired, But It Is Not Connected: Windows (Fix)
- BM64 — Erasing the Paired Device List — force.com
- 003 : List Paired Devices 1/2 : Android studio bluetooth .
- 3 Ways to Pair a Bluetooth Device on Windows — wikiHow
- Bluetooth device list — Raspberry Pi Stack Exchange
- Connect through Bluetooth on your Android device — Android .
- How to Manage Bluetooth Devices on Linux Using bluetoothctl
- Deleting or Reconnecting Phone | Vehicle Support | Buick
- Fix Bluetooth problems on Android — Android Help
- Fix Bose SoundSport Wireless Disconnects From Paired Device
- Pair devices — UWP applications | Microsoft Docs
- Can’t delete paired Bluetooth Devices | Chevrolet Malibu .
- Pair a Bluetooth device in Windows — support.microsoft.com
- Bluetooth Question: How to delete the Newly paired device .
- List of Android devices
- Contents
- Smartphones [ ]
- BlackBerry [ ]
- Cherry Mobile [ ]
- Essential [ ]
- Google [ ]
- Honor (Huawei) [ ]
- Huawei [ ]
- Motorola [ ]
- Motorola Mobility [ ]
- Nextbit [ ]
- 2016)»> Nexus (Google & Partners >2016) [ ]
- Nokia (HMD Global) [ ]
- OnePlus [ ]
- Samsung [ ]
- Galaxy A Series [ ]
- Galaxy C Series [ ]
- Galaxy E Series [ ]
- Galaxy F Series [ ]
- Galaxy J Series [ ]
- Galaxy M Series [ ]
- Galaxy Mega Series [ ]
- Galaxy Mini Series [ ]
- Galaxy Note Series [ ]
- Galaxy On Series [ ]
- Galaxy R Series [ ]
- Galaxy S Series [ ]
- Galaxy Y Series [ ]
- Galaxy Z Series [ ]
- Other Galaxy Devices [ ]
- Xiaomi [ ]
- Redmi [ ]
- Black Shark [ ]
- Tablets [ ]
- Amazon [ ]
- Motorola [ ]
- Prestigio [ ]
- Nexus/Pixel Series (created by Google and Partners) [ ]
- Samsung [ ]
Android Bluetooth List Paired Devices with Examples
In android, Bluetooth is a communication network protocol, which allows devices to connect wirelessly to exchange the data with other Bluetooth devices.
Generally, in android applications by using Bluetooth API’s we can implement Bluetooth functionalities, such as enable or disable a Bluetooth, searching for available Bluetooth devices, connecting with the devices and managing the data transfer between devices within the range.
In android, we can perform Bluetooth related activities by using BluetoothAdapter class in our applications. To know more about BluetoothAdapter, check this Android Bluetooth with Examples.
Android Bluetooth List Paired Devices
By using BluetoothAdapter method getBondedDevices(), we can get the Bluetooth paired devices list.
Following is the code snippet to get all paired devices with name and MAC address of each device.
If you observe above code, we are getting the Bluetooth paired devices name and mac address by using BluetoothDevice object.
As we discussed in previous tutorial Android Bluetooth with Examples, we need to set Bluetooth permissions in our android manifest file like show below to use Bluetooth features in our android applications.
manifest . >
uses-permission android :name= «android.permission.BLUETOOTH»/>
uses-permission android :name= «android.permission.BLUETOOTH_ADMIN»/>
uses-permission android :name= «android.permission.ACCESS_COARSE_LOCATION»/>
.
Following is the example of getting the list of available Bluetooth paired devices on button click in android applications.
Android List Bluetooth Paired Devices Example
Create a new android application using android studio and give names as BluetoothListPairedDevicesExample. In case if you are not aware of creating an app in android studio check this article Android Hello World App.
Once we create an application, open activity_main.xml file from \res\layout folder path and write the code like as shown below.
activity_main.xml
Now open your main activity file MainActivity.java from \java\com.tutlane.bluetoothexample path and write the code like as shown below
MainActivity.java
package com.tutlane.bluetoothlistpaireddevicesexample;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Set;
public class MainActivity extends AppCompatActivity <
private ListView lstvw ;
private ArrayAdapter aAdapter ;
private BluetoothAdapter bAdapter = BluetoothAdapter.getDefaultAdapter();
@Override
protected void onCreate(Bundle savedInstanceState) <
super .onCreate(savedInstanceState);
setContentView(R.layout. activity_main );
Button btn = (Button)findViewById(R.id. btnGet );
btn.setOnClickListener( new View.OnClickListener() <
@Override
public void onClick(View v) <
if ( bAdapter == null ) <
Toast.makeText(getApplicationContext(), «Bluetooth Not Supported» ,Toast. LENGTH_SHORT ).show();
>
else <
Set pairedDevices = bAdapter .getBondedDevices();
ArrayList list = new ArrayList();
if (pairedDevices.size()> 0 ) <
for (BluetoothDevice device: pairedDevices) <
String devicename = device.getName();
String macAddress = device.getAddress();
list.add( «Name: » +devicename+ «MAC Address: » +macAddress);
>
lstvw = (ListView) findViewById(R.id. deviceList );
aAdapter = new ArrayAdapter(getApplicationContext(), android.R.layout. simple_list_item_1 , list);
lstvw .setAdapter( aAdapter );
>
>
>
>);
>
>
If you observe above code, we are getting the Bluetooth paired devices name and mac address by using BluetoothDevice object.
As discussed, we need to set Bluetooth permissions in android manifest file (AndroidManifest.xml) to access Bluetooth features in android applications. Now open android manifest file (AndroidManifest.xml) and write the code like as shown below
AndroidManifest.xml
If you observe above code, we added required Bluetooth permissions in manifest file to access Bluetooth features in android applications.
Output of Android Bluetooth List Paired Devices Example
When we run the above program in the android studio we will get the result as shown below.
When we click on Get Paired Devices button, we will get list of paired Bluetooth devices in our android application.
This is how we can get Bluetooth paired devices list in android applications based on our requirements.
Источник
How to Display Bluetooth Paired Devices Programmatically in Android?
Bluetooth’s technology is a high-speed, low-powered wireless technology link designed to connect devices such as phones or other portable equipment. It has a specification (IEEE 802.15.1) for low-power radio communications to link computers, phones, and other network devices over a short distance in a wireless manner. Bluetooth signals cover distances, typically up to 10 meters or 30 feet. Bluetooth supports the waveband of 2.45 GHz and may support up to 721 kbps alongside three voice channels. This waveband has been put aside by international agreement to use Industrial, Scientific, and Medical devices (ISM).rd-compatible with 1.0 devices. Bluetooth is capable of connecting up to “eight devices” at a time. Every device offers a unique 48-bit address from the IEEE 802 standard. The Bluetooth specification defines and supports a variety of Bluetooth network connections. In this way, Bluetooth networking may be a remarkably flexible form of a wireless system for various short-range applications. Through this article, we want to share with you the implementation of an application that displays a list of Bluetooth Paired Devices along with their MAC IDs. A sample image is given below to get an idea about what we are going to do in this article. Note that we are going to implement this project using both Java and Kotlin language.
Step by Step Implementation
To programmatically show a list of Bluetooth Paired devices against our device in Android, follow the following steps:
Step 1: Create a New Project
To create a new project in Android Studio please refer to How to Create/Start a New Project in Android Studio. Note that select Kotlin as the programming language.
Источник
How to Programmatically Pair or Unpair Android Bluetooth Device
In bluetooth wireless communication, if two devices want to connect and share data, they have to be paired first. To be paired means the two devices are aware of each other’s existence and trusted each other.
Using Android Bluetooth API, we can use createBond method to pair with a device or removeBond to unpair . This is an asynchronous call so that it will return immediately. To catch the pairing process, we have to register a BroadcastReceiver with ACTION_BOND_STATE_CHANGED intent to catch the process.
(apk and source code at the bottom if this post)
How to pair
How to Unpair
The receiver to catch the pairing process:
Register receiver
For each changed state, the intent will carry extra fields EXTRA_BOND_STATE and EXTRA_PREVIOUS_BOND_STATE . Using the value from the extra fields we can determine the state of pairing process.
State paired if current state is BOND_BONDED and previous state is BOND_BONDING .
State unpaired if current state is BOND_NONE and previous state is BOND_BONDED .
Источник
Paired Device List
Related Searches
Listing Of Websites About paired device list
Android Bluetooth List Paired Devices with Examples — …
Posted at: 1 week ago | Categories: FAQs | 414 People Used View Detail
Android bluetooth list paired devices example — javatpoint
Posted at: 1 week ago | Categories: FAQs | 268 People Used View Detail
See All Devices Connected to Your Windows 10 Computer .
Posted at: 4 days ago | Categories: FAQs | 490 People Used View Detail
How to Pair a Bluetooth Device to Your Computer, Tablet .
Posted at: 2 days ago | Categories: FAQs | 238 People Used View Detail
Android bluetooth: Paired devices list — Stack Overflow
Posted at: 2 days ago | Categories: FAQs | 464 People Used View Detail
Windows mobile:Bluetooth paired device list shows .
Posted at: 2 days ago | Categories: FAQs | 104 People Used View Detail
Paired bluetooth speaker is not listed as an audio device .
Posted at: 1 week ago | Categories: FAQs | 409 People Used View Detail
How to manage Bluetooth devices on Windows 10 | …
Posted at: 3 days ago | Categories: FAQs | 456 People Used View Detail
android — How to get the bluetooth devices as a list .
Posted at: 3 days ago | Categories: FAQs | 96 People Used View Detail
How to Display Bluetooth Paired Devices Programmatically .
Posted at: 1 week ago | Categories: FAQs | 261 People Used View Detail
Can’t remove paired bluetooth devices in Windows 10 .
Posted at: 1 week ago | Categories: FAQs | 454 People Used View Detail
Android Bluetooth List Paired Devices — W3spoint
Posted at: 1 week ago | Categories: FAQs | 161 People Used View Detail
Check your Apple ID device list to see where you’re signed .
Posted at: 5 days ago | Categories: FAQs | 346 People Used View Detail
Bluetooth Is Paired, But It Is Not Connected: Windows (Fix)
Posted at: 1 day ago | Categories: FAQs | 322 People Used View Detail
BM64 — Erasing the Paired Device List — force.com
Posted at: 1 week ago | Categories: FAQs | 417 People Used View Detail
003 : List Paired Devices 1/2 : Android studio bluetooth .
Posted at: 6 days ago | Categories: FAQs | 222 People Used View Detail
3 Ways to Pair a Bluetooth Device on Windows — wikiHow
Posted at: 1 day ago | Categories: FAQs | 348 People Used View Detail
Bluetooth device list — Raspberry Pi Stack Exchange
Posted at: 1 week ago | Categories: FAQs | 177 People Used View Detail
Connect through Bluetooth on your Android device — Android .
Posted at: 3 days ago | Categories: FAQs | 164 People Used View Detail
How to Manage Bluetooth Devices on Linux Using bluetoothctl
Posted at: 5 days ago | Categories: FAQs | 386 People Used View Detail
Deleting or Reconnecting Phone | Vehicle Support | Buick
Posted at: 1 week ago | Categories: FAQs | 398 People Used View Detail
Fix Bluetooth problems on Android — Android Help
Posted at: 4 days ago | Categories: FAQs | 261 People Used View Detail
Fix Bose SoundSport Wireless Disconnects From Paired Device
Posted at: 1 week ago | Categories: FAQs | 298 People Used View Detail
Pair devices — UWP applications | Microsoft Docs
Posted at: 1 week ago | Categories: FAQs | 80 People Used View Detail
Can’t delete paired Bluetooth Devices | Chevrolet Malibu .
Posted at: 1 week ago | Categories: FAQs | 209 People Used View Detail
Pair a Bluetooth device in Windows — support.microsoft.com
Posted at: 1 week ago | Categories: FAQs | 380 People Used View Detail
Bluetooth Question: How to delete the Newly paired device .
Posted at: 1 week ago | Categories: FAQs | 352 People Used View Detail
Источник
List of Android devices
This is an incomplete list of devices running Android (AOSP). To see all the articles we have on Android devices, see Category:Devices.
Software is the opposite of hardware.
Contents
Smartphones [ ]
- Posh Memo Pro LTE L600
- Posh Equal Plus X700
- Posh Ultra Max LTE L550
- Posh Titan HD E500
- Posh Micro X S240
- Zenfone 4
- Zenfone 4.5
- Zenfone 5
- Zenfone 6
BlackBerry [ ]
Cherry Mobile [ ]
- Flare S7
- Flare S7 Plus
- Flare S7 Power
- Flare S7 Max
- Flare S7 Prime
- Flare S7 Mini
- Flare S7 Lite
- Flare S8
- Flare S8 Lite
- Flare S8 Pro
- Flare S8 Plus
- Flare S8 Deluxe
- Flare S8 Max
- Flare S8 Prime
- Omega X
- Flare X3
- Flare HD 5.0
- Flare Y3 Pro
- Flare Y6 Pro
- Y7 LTE
- Y7 Pro
- J1 Lite
- J2 Max
- J2 Prime
- J6S
- J8
- J8 LTE
Essential [ ]
Google [ ]
- Pixel 3a
- Pixel 3a XL
- Pixel 4
- Pixel 4 XL
- Pixel 4a
- Pixel 4a 5G
- Pixel 5
Honor (Huawei) [ ]
- 8 Lite | 8 Pro
- 9 | 9 Lite
- View 10
- 7A
- 7c
- 7s (Huawei P Smart)
- 8C
- 8X | 8X Max
- 9i
- 10 | 10 GT | 10 Lite
- Magic 2
- Note 10
- Play
- View 20
- 8A
- 9X | 9X Pro
- 20 lite | 20 Pro | 20S
- V30
- 30 Pro
- 8A | 8A Prime
- 8S
- 9A
- 9C
- 9S
- 9X Lite
- 20e
- 30
- 30 Lite
- 30 Pro
- 30 Pro+
- 30S
- Play 4 | Play 4 Pro
- Play 4T | Play 4T Pro
- Play 9A
- X10 | X10 Max
Huawei [ ]
- M835
- nova
- Mate20 | Mate20 Pro
- Mate30 | Mate30 Pro
- Mate40 | Mate40 Pro
- P9
- P20 | P20 Pro
- P30 | P30 Pro
- P40 | P40 Pro | P40 Pro+
- Optimus G1 Pro
- G2 | G2 Mini
- G Pro Lite
- G Flex
- G3 | G3 Stylus | G3 S
- G Pro 2
- Gx
- G Vista
- F60
- F70
- G Flex
- G Flex 2
- G Pro 2
- G Pro Lite
- G4
- G5
- G5 SE
- G6
- G6+
- G7 Fit
- G7 One
- G7 ThinQ
- G8 ThinQ
- G8s ThinQ
- G8x ThinQ
- K3 (2016)
- K3 (2017)
- K3 (2019)
- K4 (2016)
- K4 (2017)
- K5 (2016)
- K7 (2016)
- K7 (2017)
- K8 (2016)
- K8 (2017)
- K8 (2018)
- K9 (2018)
- K10 (2016)
- K10 (2017)
- K10 (2018)
- K11 (2016)
- K11 (2018)
- K20 (2019)
- K20 Plus (2016)
- K30 (2019)
- K40 (2019)
- K40S (2019)
- K41S (2020)
- K50 (2019)
- K50S (2019)
- K51S (2020)
- K61S (2020)
- Optimus
- Optimus 2
- Optimus 2X
- Optimus 3D
- Optimus 3D Max
- Optimus 4X HD
- Optimus Black
- Optimus Chat
- Optimus Chic
- Optimus F3
- Optimus F3Q
- Optimus F5
- Optimus F6
- Optimus F7
- Optimus G
- Optimus G Pro
- Optimus L1 II
- Optimus L2
- Optimus L2 II
- Optimus L3
- Optimus L3 II
- Optimus L4 II
- Optimus L5
- Optimus L5 II
- Optimus L7
- Optimus L7 II
- Optimus L9
- Optimus L9 II
- Optimus L20
- Optimus L30 Sporty
- Optimus L35
- Optimus L40
- Optimus L50 Sporty
- Optimus L60
- Optimus L65
- Optimus L70
- Optimus L80
- Optimus L90
- Optimus L Fino
- Optimus L Bello
- Optimus M
- Optimus Me
- Optimus Net
- Optimus Q
- Optimus Slider
- Optimus Sol
- Optimus Vu
- Optimus Vu II
- Optimus Zip
- Q6
- Q7
- Q8
- Q9
- Stylus
- Stylus 2
- Stylus 2 Plus
- Stylus 3
- Stylus 3 Plus
- Stylus 4
- Stylus 4 Plus
- V10
- V20
- V30
- V35 ThinQ
- V40 ThinQ
- V50 ThinQ
- Velvet
- Vista
- Vista 2
- Vu 3
Motorola [ ]
Motorola Mobility [ ]
Nextbit [ ]
2016)»> Nexus (Google & Partners >2016) [ ]
Nokia (HMD Global) [ ]
- 1
- 2.1
- 3.1
- 3.1 Plus
- 5.1
- 5.1 Plus
- 6.1
- 6.1 Plus
- 7 Plus
- 7.1
- 8 Sirocco
- 8.1
- 1 Plus
- 2.2
- 2.3
- 3.2
- 4.2
- 6.2
- 7.2
- C1
- 1.3
- 2 V Tella
- 2.4
- 3.4
- 5.3
- 8.3 5G
- C2
- C2 Tava
- C2 Tennen
- C3
- C5 Endi
OnePlus [ ]
- 8
- 8 Pro
- 8T
- Nord
- Nord N10 5G
- Nord N100
Samsung [ ]
Galaxy A Series [ ]
- Galaxy A3
- Galaxy A5
- Galaxy A7
- Galaxy A8
- Galaxy A9 | Galaxy A9 Pro
- Galaxy A6 | Galaxy A6+ | Galaxy A6s
- Galaxy A7
- Galaxy A8 | Galaxy A8+ | Galaxy A8s | Galaxy A8 Star
- Galaxy A9
- Galaxy A2 Core
- Galaxy A10 | Galaxy A10e | Galaxy A10s
- Galaxy A20 | Galaxy A20e | Galaxy A20s
- Galaxy A30 | Galaxy A30s
- Galaxy A40 | Galaxy A40s
- Galaxy A50 | Galaxy A50s
- Galaxy A60
- Galaxy A70 | Galaxy A70s
- Galaxy A80
- Galaxy A90 5G
- Galaxy A01
- Galaxy A11
- Galaxy A21 | Galaxy A21s
- Galaxy A31
- Galaxy A41
- Galaxy A51 | Galaxy A51 5G
- Galaxy A71 | Galaxy A71 5G
- Galaxy A81
- Galaxy A Quantum
Galaxy C Series [ ]
- Galaxy C5
- Galaxy C7
- Galaxy C9 Pro
- Galaxy C5 Pro
- Galaxy C7 | Galaxy C7 Pro
- Galaxy C8
Galaxy E Series [ ]
Galaxy F Series [ ]
Galaxy J Series [ ]
- Galaxy J1
- Galaxy J1 Ace
- Galaxy J2
- Galaxy J5
- Galaxy J7
- Galaxy J Max
- Galaxy J1
- Galaxy J1 Ace Neo
- Galaxy J1 Mini
- Galaxy J1 Mini Prime
- Galaxy J1 Nxt
- Galaxy J2
- Galaxy J2 Prime
- Galaxy J3
- Galaxy J3 Pro
- Galaxy J5
- Galaxy J5 Prime
- Galaxy J7
- Galaxy J7 Prime
- Galaxy J2
- Galaxy J3
- Galaxy J3 Eclipse
- Galaxy J3 Emerge
- Galaxy J3 Luna Pro
- Galaxy J3 Prime
- Galaxy J5
- Galaxy J7
- Galaxy J7+
- Galaxy J7 Max
- Galaxy J7 Nxt
- Galaxy J7 Pro
- Galaxy J7 Sky Pro
- Galaxy J7 V
- Galaxy J2 Core
- Galaxy J2 Pro
- Galaxy J3
- Galaxy J4
- Galaxy J4+
- Galaxy J4 Core
- Galaxy J6
- Galaxy J6+
- Galaxy J7
- Galaxy J7 Duo
- Galaxy J7 Prime 2
- Galaxy J8
Galaxy M Series [ ]
- Galaxy M10 | Galaxy M10s
- Galaxy M20
- Galaxy M30 | Galaxy M30s
- Galaxy M40
- Galaxy M01
- Galaxy M11
- Galaxy M21
- Galaxy M31
Galaxy Mega Series [ ]
- Galaxy Mega 5.8
- Galaxy Mega 6.3
Galaxy Mini Series [ ]
Galaxy Note Series [ ]
- Galaxy Note10 | Galaxy Note10 5G | Galaxy Note10+ | Galaxy Note10+ 5G
Galaxy On Series [ ]
- Galaxy On5 (2016)
- Galaxy On5 Pro
- Galaxy On7
- Galaxy On7 Pro
- Galaxy On8
- Galaxy On Nxt
- Galaxy On6
- Galaxy On7 Prime
- Galaxy On8
Galaxy R Series [ ]
Galaxy S Series [ ]
Galaxy Y Series [ ]
Galaxy Z Series [ ]
- Galaxy Z Flip
- Galaxy Z Fold2 | Galaxy Z Fold2 5G
Galaxy Z Flip 3
Other Galaxy Devices [ ]
- Galaxy 3
- Galaxy Ace
- Galaxy Fit
- Galaxy Gio
- Galaxy S Blaze
- Galaxy Stellar
- Vibrant
- Xperia E
- Xperia J
- Xperia P
- Xperia S
- Xperia SL
- Xperia T
- Xperia TX
- Xperia U
- Xperia V
- Xperia C
- Xperia L
- Xperia M
- Xperia SP
- Xperia Z | Xperia Z Ultra
- Xperia Z1
- Xperia ZL
- Xperia ZR
- Xperia C3
- Xperia E1
- Xperia E3
- Xperia M2 | Xperia M2 Aqua
- Xperia T2 Ultra
- Xperia T3
- Xperia Z1 Compact
- Xperia Z2
- Xperia Z3 | Xperia Z3 Compact
- Xperia C4
- Xperia C5 Ultra
- Xperia E4
- Xperia M4 Aqua
- Xperia M5
- Xperia Z3+ (Xperia Z4 in Japan)
- Xperia Z5 | Xperia Z5 Compact | Xperia Z5 Premium
- Xperia E5
- Xperia X | Xperia X Performance
- Xperia XA | Xperia XA Ultra
- Xperia XZ
- Xperia L1
- Xperia XA1 | Xperia XA1 Plus | Xperia XA1 Ultra
- Xperia XZ Premium
- Xperia XZs
- Xperia XZ1 | Xperia XZ1 Compact
- Xperia L2
- Xperia XA2 | Xperia XA2 Plus | Xperia XA2 Ultra
- Xperia XZ2 | Xperia XZ2 Compact | Xperia XZ2 Premium
- Xperia XZ3
- Xperia 1
- Xperia 5
- Xperia 8
- Xperia 10 | Xperia 10 Plus
- Xperia L3
- Xperia 1 II
- Xperia 5 II
- Xperia 10 II
- Xperia L4
Others [ ]
- NEX
- NEX 3
- NEX 3S
- NEX Dual Display
- V9
- X7
- X30
- X50
Xiaomi [ ]
- Mi 1S
- Mi 2 | Mi 2S | Mi 2A
- Mi 3
- Mi 4 | Mi 4 LTE | Mi 4i | Mi 4S | Mi 4C
- Mi 5 | Mi 5S | Mi 5S Plus | Mi 5C
- Mi 6 | Mi 6 Plus
- Mi 8 | Mi 8 Pro | Mi 8 Lite | Mi 8 SE | Mi 8 Explorer
- Mi 9 | Mi 9 SE | Mi 9T | Mi 9 Pro | Mi 9 Pro 5G | Mi 9 Lite | Mi 9 Explorer
- Mi 10 Pro | Mi 10 Pro 5G | Mi 10 Ultra | Mi 10T Pro 5G | Mi 10T 5G | Mi 10T Lite 5G | Mi 10 Lite 5G | Mi 10 Youth 5G | Mi 10 5G
- Mi Note | Mi Note Pro
- Mi Note 10 | Mi Note 10 Pro | Mi Note 10 Lite
- Mi A1
- Mi A2 | Mi A2 Lite
- Mi A3
- Mi Max
- Mi Max 2
- Mi Max 3
- Mi Mix
- Mi Mix 2 | Mi Mix 2S
- Mi Mix 3 | Mi Mix 3 5G
- Mi Mix Alpha
Redmi [ ]
- Redmi | Redmi 1S | Redmi Pro
- Redmi 2 | Redmi 2A | Redmi 2 Pro | Redmi 2 Prime
- Redmi 3 | Redmi 3 Pro | Redmi 3S | Redmi 3S Prime | Redmi 3X
- Redmi 4 | Redmi 4 Prime
- Redmi 5 | Redmi 5A | Redmi 5 Plus
- Redmi 6 | Redmi 6A
- Redmi 7 | Redmi 7A
- Redmi 8 | Redmi 8A Dual | Redmi 8A Pro
- Redmi 9 | Redmi 9A | Redmi 9C | Redmi 9C NFC | Redmi 9 Prime | Redmi 9i | Redmi 9AT
- Redmi 10X 5G | Redmi 10X 4G | Redmi 10X Pro 5G
- Redmi K20 | Redmi K20 Pro | Redmi K20 Pro Premium
- Redmi K30 | Redmi K30 Pro | Redmi K30 Pro Zoom | Redmi K30 5G | Redmi K30i 5G | Redmi K30 5G Racing | Redmi K30 Ultra | Redmi K30S
- Redmi Y1 | Redmi Y1 Lite
- Redmi Y2 (S2)
- Redmi Y3
- Redmi Go
- Redmi Note | Redmi Note 4G | Redmi Note Prime
- Redmi Note 2
- Redmi Note 3
- Redmi Note 4 | Redmi Note 4X
- Redmi Note 5 | Redmi Note 5 Pro
- Redmi Note 6 | Redmi Note 6 Pro
- Redmi Note 7 | Redmi 7S | Redmi Note 7 Pro
- Redmi Note 8 | Redmi Note 8T | Redmi Note 8 Pro
- Redmi Note 9 | Redmi Note 9T | Redmi Note 9 Pro | Redmi Note 9 5G | Redmi Note 9 4G | Redmi Note 9 Pro 5G
- Poco F1
- Poco F2 Pro
- Poco X2
- Poco X3
- Poco X3 Pro
- Poco X3 NFC
- Poco M3
- Poco C3
Black Shark [ ]
- Xiaomi Black Shark
- Xiaomi Black Shark 2 | Xiaomi Black Shark 2 Pro
- Xiaomi Black Shark 3 | Xiaomi Black Shark 3 Pro | Xiaomi Black Shark 3S
- Xiaomi Black Shark Helo
- Axon 11 4G/5G
- Axon 11 SE 5G
- Axon M
- Nubia Play
- Nubia Red Magic
- Nubia Red Magic 3
- Nubia Red Magic 3s
- Nubia Red Magic 5G
- Nubia Red Magic 5G Lite
- Nubia Red Magic Mars
- Nubia X
- Nubia Z20
- Score M
Tablets [ ]
Amazon [ ]
- Kindle Fire
- Kindle Fire HD
- Kindle Fire HD 8.9
- Kindle Fire HDX
- Kindle Fire HDX 8.9
- Dell Streak
- Dell Venue series
Motorola [ ]
Prestigio [ ]
- Prestigio MultiPad PMT5011 3G Muze
Nexus/Pixel Series (created by Google and Partners) [ ]
Samsung [ ]
- Samsung Galaxy Tab
- Samsung Galaxy Tab 10.1
- Sony Xperia Tablet Z
- Sony Xperia Z2 Tablet
- Sony Xperia Z3 Tablet Compact
- Sony Xperia Z4 Tablet
Источник