Will android run on x86

Android-x86

Run Android on your PC

VirtualBox How To

The following are instructions on how to run Android-x86 inside VirtualBox.
Note: For optimal performance, make sure you have enabled either VT-x or AMD-V in your host operating system’s BIOS.

Android-x86 versions tested against Virtualbox versions.

Date Tested Virtualbox Host OS Android-x86 Result
?? 2.2.4 Windows XP ?? Good
?? 3.0.2 Fedora 11 ?? Good
Nov. 2 2017 5.2.0 Windows 10 6.0-r3 32/64 bit Good

Downloading

Download an ISO of Android-x86 from here.

Caution

Create a new VM

If you have not already created a VirtualBox virtual machine for Android-x86 yet, do so as follows:

  1. Click the «New» button, and name your new virtual machine however you like. Set Type to Linux, and Version to Linux 2.6 / 3.x / 4.x. Note that you should choose the appropriate bit type for the version of Android-x86 that you downloaded.
  2. Specify how much RAM will be allocated to your virtual machine when you run it. Android doesn’t specify a bare-minimum requirement for memory, just keep in mind what apps you plan on running. 2GB (2048MB) is a good place to start, and you can change this later if you need to.
  3. Create a new Hard disk image which will act as your machine’s storage. The recommended starting size of 8GB is enough. Click through the rest of the options for creating your Hard disk.

Your virtual machine has now been created. It still needs to be initially installed at this point.

Settings

Tested on VirtualBox 64-bit for Windows, version 5.2.0. Android-x86 version 6.0-r3, both 32-bit and 64-bit.

Select your machine, then click the Settings button and refer to the below recommended configuration to make sure your settings match.

  • [System] Recommended: Processor(s) should be set above 1 if you have more than one virtual processor in your host system. Failure to do so means every single app (like Google Chrome) might crush if you try to use it.
  • [Display] :
    1. Optional: Video Memory may be increased beyond the minimum selected automatically. The affects of this are unknown.
    2. Mandatory: Unless guest additions are installed [1] , change the default VMSVGA to VBoxVGA .
    3. Optional: Enable 3D Acceleration may be checked. The Linux Guest Additions must (VirtualBox v6.1+) / may (VirtualBox v6.0 and below) need to be installed [2][1] to get any benefit from this. Failure to do so means you won’t even be able to launch Android-X86 in the first place. [3]
  • [Storage] Find the first «Empty» item (this should have an icon of a CD). In the Attributes, click on the CD icon with a small down arrow, and pick «Choose Optical Virtual Disk File. «. Specify the Android-x86 ISO that you downloaded.
  • [Audio] Intel HD Audio seems to be natively supported in Android-x86.
  • [Network] By default, your installation of Android-x86 will be able to automatically connect to the internet. If not, you can try to enable WiFi in Settings/Network & Internet, and connect to showing VirtWifi. If you do not want to connect to the internet in VirtualBox, uncheck Enable Network Adapter under the Adapter 1 tab.

Install

Click the green Start arrow to power-on your virtual machine. You’ll be presented with a list of options. Use the arrow keys to pick which one you want, then press Enter once the one you want is selected.

  1. If you don’t want to install Android-x86 yet and just want to test it, pick one of the Live CD options (except for Debug mode).
  2. Pick the Installation option if you want your system to be installed to the virtual hard drive.

If you want to use higher resolution, you can edit the boot option by pressing TAB, change vga=788 (800×600) to vga=791 (1024×768) or vga=794 (1280×1024), and press Enter. You can also use vga=ask to see all available modes. But please note Android will only work under 16-bit mode.

Partition

When you are prompted to Choose a partition:

  1. If you upgrade Android-x86 from a previous version, just select the existing partition. Agree to overwrite it when prompted.
  2. If this is a new VM, choose to Create/Modify partitions. Use Bootable but not GPT! This will cause the GRUB installation to fail later.

You may partition your disk however you see fit. If you just want a simple installation, create one partition taking up the entire disk and format it as ext4 .

Continue through the installation. You should install GRUB when it prompts you to. You may also leave /system as read and write when prompted.
Once the installation is complete, force close/shut down the virtual machine and remove the ISO from the virtual CD drive.
Finaly, start Android-x86. If it’s a new machine, once loaded you can perform the Android setup to begin using your machine.

Advanced

Custom partitions, SDCard

When booting Android-x86, you may specify which partitions represent the data and sdcard. On the boot menu, select an entry you would like to boot from, press TAB, then add the following as it suits your needs:

DATA=sda1 SDCARD=sda2 Press Enter to boot. These options specify user data (your setting, your uploaded applications, . ) go into /dev/sda1, and data saved in sdcard go into /dev/sda2.

Читайте также:  Обнаружены наложения андроид как исправить xiaomi

If you build the ISO from source, you can add these options to bootable/newinstaller/boot/isolinux/isolinux.cfg.

Here is a note from David when using fdisk:

  1. Create a new virtual machine with a hard disk.
  2. Launch the Live ISO in Debug mode (I used android-x86-2.2-generic.iso) to get the commend prompt.
  3. «fdisk /dev/sda», then type:
    1. «n» (new partition)
    2. «p» (primary partition)
    3. «1» (1st partition)
    4. «1» (first cylinder)
    5. «xx» (choose the last cylinder, leaving room for a 2nd partition)
    6. «w» (write the partition)
  4. Repeat #3, but call it partition 2, and use the remaining cylinders.
  5. «mdev -s»
  6. «mke2fs -j -L DATA /dev/sda1»
  7. «mke2fs -j -L SDCARD /dev/sda2»
  8. Reboot («reboot -f»)
  9. At the boot menu, choose VESA, then hit TAB and type so that the end of the line reads: «DATA=sda1 SDCARD=sda2». (Only need for the generic target images, for VM target images, this is not needed)
  10. After booting (and of course disabling mouse integration via the machine menu), the SD card is read as unformatted, but you can format it by going to Settings > SD card & phone settings > Format SD Card, then Mount SD card.
  11. The SD card should now work!

Note: for the step 7, if you want to format to vfat only, then you can do :

Also remember the partition type has to be fat32 (b or c). By using vfat, the step 10 is not needed.

DevTools application has a MediaScanner which (re)indexes your SD card for cases where you manually copied media over. This ensures that you see new images and/or music in the apps without having to reboot.

If you downloaded it from within android, the application asks the relevant service to index new files.

Playing music

This section describes two ways to upload music files into Android running on a vbox so you can play them by the Music app. Of course, you can save the files to the virtual disk mounted at /sdcard, as described above.

Upload files by adb

Adb is Android Debug Bridge, a tool to debug Android system. If you compile from source, it is located in out/host/linux-x86/bin/adb. Otherwise you can get it from Android SDK. Suppose the network of your vbox is OK, you can upload a file from your host by

You need to know the ip of your vbox. You can get it by Alt-F1 and netcfg. You may also need to reboot Android to see the uploaded files. Of course in this way you have to mount /sdcard to a virtual disk partion.

For complex network settings of the VirtualBox VM, you should refer to Debug How To on how to connect adb to the VM.

Upload files by wget

You can also upload files by wget in the debug mode. In the debug mode shell, before entering Android,

Debug with adb

This section describes the way to debug Android with adb via network.

If we want to debug with adb via network, we should ensure the ip of vbox can be accessed by host machine. So we should change the Network Adapter type of vbox to Bridged Adapter. After starting the android-x86, we should follow the above Settings/[Network] section to ensure the network of android-x86 is enabled, and enable USB debugging in Settings/System/Developer Options. Then we can get the device ip from Settings/System/About tablet/IP address. For example, if we see the ip address is 192.168.0.116, then we can use following command to connect android-x86 in vbox from host machine.

Источник

Android-x86

Run Android on your PC

Release Note 9.0-r1

(2020/02/27)

Key Features

The 9.0-r1 release is based on the latest Android 9.0.0 Pie release (android-9.0.0_r53). The features include:

  • Support both 64-bit and 32-bit kernel and userspace with latest LTS kernel 4.19.105.
  • Support OpenGL ES 3.x hardware acceleration for Intel, AMD, Nvidia and QEMU(virgl) by Mesa 19.3.4.
  • Support OpenGL ES 2.0 via SwiftShader for software rendering on unsupported GPU devices.
  • Support hardware accelerated codecs on devices with Intel HD & G45 graphics family.
  • Support secure booting from UEFI and installing to UEFI disk.
  • A text based GUI installer.
  • Add theme support to GRUB-EFI.
  • Support Multi-touch, Audio, Wifi, Bluetooth, Sensors, Camera and Ethernet (DHCP only).
  • Simulate WiFi adapter on devices with Ethernet only to increase app compatibility.
  • Auto-mount external usb drive and sdcard.
  • Add Taskbar as an alternative launcher which puts a start menu and recent apps tray on top of your screen and support freeform window mode.
  • Enable ForceDefaultOrientation on devices without known sensors. Portrait apps can run in a landscape device without rotating the screen.
  • Support arm arch apps via the native bridge mechanism. (Settings -> Android-x86 options, 64-bit only)
  • Support to upgrade from non-official releases.
  • Add experimental Vulkan support for newer Intel and AMD GPUs. (Boot via Advanced options -> Vulkan support)
  • Mouse integration support for VMs including VirtualBox, QEMU, VMware and Hyper-V.

Released Files

This release contains the following files. You can choose one of these files depends on your devices. Most modern devices should be able to run the 64-bit ISO. For older devices with legacy BIOS, you may try the 32-bit ISO.

    64-bit ISO: android-x86_64-9.0-r1.iso

32-bit ISO: android-x86-9.0-r1.iso

64-bit rpm: android-x86-9.0-r1.x86_64.rpm

32-bit rpm: android-x86-9.0-r1.i686.rpm

64-bit ISO with kernel 4.9: android-x86_64-9.0-r1-k49.iso

sha1sum: a512874d06b4542cbd4c7d63df427e36c6a14028
Recommended for VMware users

To use an ISO file, Linux users could just dump it into a usb drive to create a bootable usb stick like:

where /dev/sdX is the device name of your usb drive.

Windows’s users can use the tool Win32 Disk Imager to create a bootable usb stick.

Please read this page about how to install it to the device.

Except the traditional ISO files, we also package android-x86 files into a Linux package rpm. It allows Linux users to easily install the release into an existing Linux device with a standalone ext4 root partition. On an rpm based device (Fedora/Red Hat/CentOS/SUSE. ), just install it like a normal rpm package:

Читайте также:  Как вставить ссылку андроид

This will update your older installation like 8.1-r3 or 9.0-rc2 if you have.

On a deb based device (Debian/Ubuntu/LinuxMint/. ), please use the alien tool to install it:

All files will be installed to the /android-9.0-r1/ subdirectory and boot entries will be added to grub2 menu. Reboot and choose android-x86 item from the menu to boot Android-x86. Alternatively, you can launch Android-x86 in a QEMU virtual machine by the installed qemu-android script:

Note Android-x86 running in QEMU and the real machine (after rebooting) share the same data sub-folder.

To uninstall it :

Known Issues

  • Google Play Service may crash sometimes on the 32-bit image.
  • Suspend and resume doesn’t work on some devices.
  • Nvidia GPU (nouveau) may hang sometimes.
  • Taking screenshots may not work on some GPUs.
  • Taking photos doesn’t work if Vulkan is enabled.

Source code

The source code is available in the main git server.

Read this page for how to compile source code.

To build 9.0-r1 with kernel 4.9, sync the source tree as above commands, then

Источник

Android-x86

Run Android on your PC

This is a project to port Android Open Source Project to x86 platform, formerly known as «patch hosting for android x86 support». The original plan is to host different patches for android x86 support from open source community. A few months after we created the project, we found out that we could do much more than just hosting patches. So we decide to create our code base to provide support on different x86 platforms, and set up a git server to host it.

This is an open source project licensed under Apache Public License 2.0. Some components are licensed under GNU General Public License (GPL) 2.0 or later. If you think we did something great, consider making a donation.

What’s New

  • 2021-06-23: The Android-x86 8.1-r6 released (the sixth stable release of oreo-x86).
  • 2021-02-15: The cm-x86-14.1-r5 released (the fifth stable release of cm-14.1-x86).
  • 2021-02-14: The Android-x86 7.1-r5 released (the fifth stable release of nougat-x86).
  • 2020-05-20: The cm-x86-14.1-r4 released (the fourth stable release of cm-14.1-x86).
  • 2020-05-16: The Android-x86 7.1-r4 released (the fourth stable release of nougat-x86).
  • 2020-05-13: The Android-x86 8.1-r5 released (the fifth stable release of oreo-x86).
  • More.

Project Goal

To provide a complete solution for Android on common x86 platforms. You may think Android-x86 as an Android BSP of generic x86 platforms.

Screenshots

More screenshots can be found here.

Sponsors

  • Supported by cricket betting tips live rate.
  • Jamie Hooper journalist and editor of the non-GamStop site Casino Wise UK supports the Android-x86 project.
  • Sponsored by Nettikasinot CasinoTop.
  • Sponsored by svenska casino utan licens.
  • Supported by https://buylikesservices.com/buy-instagram-followers/.
  • Buy Instagram Followers UK From ActiveFollowersUK, 100% Real & Active.
  • Supported by Crypto Casinos and Sportsbooks.
  • VPS hosting by Evolution Host.
  • Supported on The Best Online Casinos in Argentina.
  • Supported on Philippine Real money Casinos.
  • Supported on roulettealsharq.com.
  • Supported on Best Casino in Kuwait.
  • Supported on casino-en-linea.com.ar.
  • Sponsored by portalcreditos.es.
  • Sponsored by casinon utan registering från casinos online españa.
  • Sponsored by CasinoSlam.
  • Sponsored by casinoonlineespaña.es.
  • Sponsored by rahapelit-netissa.com.
  • Sponsored by casasapuestasdeportivas.es.
  • Supported by https://instapple.co.uk/buy-tiktok-followers/.
  • Kasinosetä listaa kaikki uudet nettikasinot ilman rekisteröitymistä samalle sivustolle aina arvosteluineen.
  • Sponsored by https://vpnarabcasinos.com/.
  • Best free spins no deposit offer that you can play on your smartphone.
  • Buy Instagram Followers and likes from Boostlikes.co.
  • Sponsored by LeafletCasino.com.
  • Sponsored by best crypto casinos according to europebusinessreview.
  • Sponsored by https://www.vpsserver.com/cheap-vps/.
  • Visit Coupons4Printing for the latest coupons and deals for your favorite online retailers.
  • If you’re looking for the best casino websites, Toponlinecasinoaustralia for you!
  • Buy Instagram Followers and Likes From GPC.fm.
  • Play online slots for real money at Slots Empire Casino with great bonuses.
  • Realcasinoscanada.com is here to help you find the best Canadian online casinos and trusted sportsbooks of 2021. Check the guide to know everything, you need to gamble professionally.
  • Spelen voor echt geld is de meest populaire manier voor fans van online casino’s. Bij onze site hebben we het veiligste en beste online casino echt geld voor Nederlandse spelers gevonden. Bekijk dit eens!
  • Sponsored By Buy Instagram Likes from BuzzVoice.
  • Casinovertailu.com listaa uudet kasinotarjoukset – lue parhaat kasinotarjoukset.
  • Gclub สุดยอดเว็บพนันออนไลน์ต้องเลือก Gclub Casino.
  • จีคลับ เข้าเล่นง่ายผ่าน ทางเข้าจีคลับ ช่องทางที่ดีที่สุด.
  • エクスペリエンス 日本で最高のオンラインカジノボーナス.
  • Real Time Communications World informs the world of the increasing need and access to communicating amongst others in real time.
  • Sponsored by sa gaming.
  • Sponsored by Goldenslot.
  • Supported by カジノガイド.
  • Sponsored by Uppsats.
  • Löydä paras nettikasinot suomalaisille.
  • QYTO オンラインカジノランキングとレビュー.
  • Sponsored by https://casinononaams.io/.
  • Supported by Casinò stranieri che accettano Italiani.
  • Supported by Casinos To Play.
  • Supported by OnlineCasinoTest.com.de.
  • Most Independent and detailed Online Casino Reviews.
  • 2021年最佳中国赌场网站.
  • Löydä luotettavat nettikasinot sivulta parhaimmat nettikasinot.
  • Kaikki kasinot löytyvät Pelipisteen sivuilta kaikki nettikasinot.
  • Möchtest Du die besten Neue Online Casinos für 2021 in Deutschland entdecken? Dave Liste steht Dir zur Verfügung. Hier kannst Du auch erfahren, wie Du selbst Dein perfektes neues Casino finden kannst.
  • Löydä parhaat pikakasinot sivultamme pikakasinot.
  • Pelipiste listaa uudet ja parhaat pikakasinot.
  • Want to gamble like a pro? Learn everything about online casinos for Android at the Casinority reviewing platform.
  • Supported by CanadianCasinos.ca.
  • Supported by Gambledex.
  • Supported by Wagerdex.
  • Android-x86 thanks to Bradley Oliva from https://casinogap.org/ for a development help.
  • Supported by W.Terry from NonStopCasino.org.
  • Take a look at the finest uk mobile casino sites that you can play on your smartphone.
  • Start gambling with our top 10 online casino list!
  • If you like to gamble on mobile you should check the best mobile casinos on JohnSlots.
  • Sponsored by Togel.
  • Supported by https://www.casinopro.se.
  • Supported by https://newzealandcasinos.nz.
  • Supported by GGPoker.
  • Sponsored by gclub.
  • Sponsored by scr888.
  • Supported by ltccasinos.com.
  • Supported by vpnarabcasinos.com.
  • Sponsored by SlotsUp 日本でスマホでプレイできるカジノリストを見つけます.
  • Find betting sites and slots not on Gamstop at BestUK.Casino.
  • Non-UK casinos are getting more popular among foreigners in the UK. Explore them on casino-experts non gamstop site.
  • Brand new casino sites can be found on new non Gamstop casinos, also independent casinos open to everyone.
  • A huge thanks to 777Casino.co.uk for providing the latest bonuses and Free Spins for 2020.
  • Op zoek naar een betrouwbare goksite? Speel op veilige casinosite OnlineCasinoHEX.nl.
  • KasynoHEX.com PL — kasyno internetowe ranking 2020.
  • Die beste Seite mit allen Casinos Online im Test von CasinoHEX.at.
  • SwissCasinoHEX.com ist der vertrauenswürdigste Leitfaden für Casinos in der Schweiz.
  • Joaca pacanele cu fructe la casinohex.ro site pentru România.
  • AussieCasinoHEX.com best site about online casinos in Australia.
  • At BestBettingCasinos.com you find an overview of the best online casino websites, games and no deposit bonuses.
  • Supported by bestbitcoincasino.net.
  • Sponsored by sbobet.
  • สมัคร Royal online v2 ต้องเลือก Royal Online.
  • Sponsored by Laatukasinot — Nettikasinot ilman rekisteröitymistä.
  • Uudet kasinot ilman rekisteröitymistä löytyvät sivulta pikakasinot.
  • Löydä uudet ja parhaat pikakasinot!
  • https://justuk.club/ — Non Gamstop Casino Club.
  • Sponsored by slotxo.
  • Sponsored by ufabet.
  • The South African gambling market have seen a great growth over the past years, read more on Online.Casino South Africa.
  • Sponsored by Casinokix.
  • Your ultimate guide to mobile app development.
  • Discover, review and compare new mga casinos 2021 in one place.
  • Sponsored by Casino-x reviews at casinowired.com.
  • Sponsored by オンラインカジノランキング.
  • 【最新情報】オンラインカジノの決定版!最新入金不要ボーナスと無料ゲームで賞金をつかもう!
  • Sponsored by Supercazino.ro — Best Online Gambling site in Romania.
  • Find your favorite bitcoin casino at BitcoinBuster.com.
  • Sponsored by best essay writing service reviews.
  • Pikakasinoja.com etsii uudet ja parhaat pikakasinot suomalaisille.
  • Get the latest India Horse Racing tips for free with Indiagamblers.com right in your Android smartphone.
  • Sign up and learn more how you can get a Free Bet with Bet365 Android App.
  • Visit Casinotalk and learn more about 888 Casino App for Android.
  • Löydä uudet nettikasinot ja pelaa kasino ilman rekisteröitymistä osoitteessa kasinotilmanrekisteröitymistä.com.
  • Finn nye casino på nett hos Casinoselfie – Oppdag mer – Vinn mer!
  • Sponsored by Bitcoin Casino.
  • The most unbiased reviews of Non Gamstop Casinos UK from the team at Non-Gamstop-Casinos.com.
  • If you are German and prefer so-called Casinos ohne Lizenz, then visit Bonusmeister.com for a transparent comparison.
  • Play online blackjack games for real money at Red Dog Casino for your chance to win big!
  • Thanks for support by iCasinoReviews website, which provides statistics of the best online real money casinos in New Zealand.
  • Sponsored by Netticasinot.
  • Sponsored by Uudet suomenkieliset nettikasinot.
  • Sponsored by MrCasinova.
  • Sponsored by slot88.
  • Sponsored by joker123.
  • Sponsored by bandarq.
  • Supported by Real Money Kuwait Casino.
  • Supported by Best Kuwait Csinos to win Real Money.
  • Supported by BestQatarCasinos.com.
  • Filmer is the guide for movies, series and actors — all in one place!
  • ネットでカジノゲームを楽しめるオンカジは、無料で試せる入金不要ボーナスや初回入金ボーナス等オンカジならではの特典が満載だ.
  • Sponsored by slot online.
  • Sponsored by idn poker.
  • Sponsored by Indian Betting Apps.
  • Sponsored by Palacio de Juegos.
  • Sponsored by Cassinos Online no Brasil.
  • Sponsored by Onlinecasinoplatz.com, Beste Online Casinos in Deutschland.
  • Sponsored by Onlinecasinoinformatie.com, Vergelijkingswebsite voor de meest betrouwbare online casinos.
  • Sponsored by onlinejapancasino.com.
  • Bitcoin gamblers can find a list of the best bitcoin casinos at CryptoCasinos.
  • Royalcasino is a great portal for the best online casinos in India.
  • Casinos outside of the UK are growing in popularity, take a look at this guide for casinos not on gamstop to find out more.
  • NZ players should take a look at Gambler.co.nz — The best source for casino and betting in New Zealand.
  • Pelaanyt — pikakasinot, joissa on nopeat kotiutukset.
  • Global Poker works in-browser for both Android and any desktop operating systems. This review shows how their poker software works.
  • Supported by arabic-online-casino.com.
  • Sponsored by Kasinot ilman rekisteröitymistä.
  • Sponsored by verovapaat nettikasinot ilman rekisteröintiä.
  • 最高のオンラインカジノ.
  • プレイヤー必見!日本で一番勝率がいいオンラインカジノ.
  • Sponsored by Snellecasinos.com — Ben je op zoek naar casino’s met snelle uitbetalingen? Bekijk dan de lijst met snelle casinos op snellecasinos.com!
  • Sponsored by Bonuskoodit.com — Löydät varmasti parhaat bonukset casinoihin jatkuvasti päivittyvältä casino bonukset sivulta.
  • Sponsored by Pikakasinot — Valitse suosikkisi ammattilaisten arvostelemista. Uudet pikakasinot, parhaat ja isoimmat bonukset!
  • Sponsored by StickerYou.com, manufacturers of quality Custom Stickers and Custom Labels.
  • Sebastian Albrecht from Vancouver special, Lorne Marr, Toronto Realtor Elli Davis, and Chantal Marr from No medical life insurance for their support.
Читайте также:  Как установить андроид pay

Tested Platforms

The tests are done by the project members and others from android-porting group.

  • Microtech e-tab Pro (2018)
  • ASUS Eee PCs/Laptops
  • Viewsonic Viewpad 10
  • Dell Inspiron Mini Duo
  • Samsung Q1U
  • Viliv S5
  • Lenovo ThinkPad x61 Tablet

Most of the models can run the native resolutions via i915 driver. Thanks to the kernel mode setting (kms) feature introduced since kernel 2.6.29.

Features

The following features are available in the latest release.

  • Kernel 4.19, KMS enable
  • Wifi support with GUI
  • Better disk installer
  • Power Suspend/resume (S3 mode)
  • Battery Status
  • Software mouse cursor
  • Mouse wheel
  • Support netbook native resolution
  • Audio (ALSA)
  • V4l2 Camera support
  • Mirror mode on external monitors
  • External storage auto mount support
  • Support external keyboard
  • Debug mode with busybox
  • Bluetooth
  • G-sensor

Source Code

We provide a complete, compilable and workable source tree. Read this page for how to use it.

Development (2020/04)

What we are working on now

  • Android 10 (Q release) porting (q-x86 branch)
  • Upgrade kernel to 5.4
  • OpenGL ES hardware acceleration for intel/radeon/nvidia/amdgpu (pstglia, mauro) and virgl(robh) GPUs.
  • HDMI audio (cwhuang)
  • LineageOS integration (jjm)
  • Hardware accelerated codecs

To-Do List

  • Multiple displays support
  • Better power management
  • Miracast

Sponsored by buy youtube views.

Источник

Оцените статью