LightBlog

mercredi 6 avril 2022

Google Docs will soon let you add emoji reactions to documents

Emoji reactions are an integral part of Slack, Instagram, and iMessage conversations, allowing you to quickly react to messages without putting much effort. Now Google Docs is joining the party.

Google Docs on the web will soon let you leave emoji reactions in documents. Google Docs currently lets you add a comment to documents, which, let’s face it, is not the fastest and most fun way to provide feedback. But soon, you’ll be able to leave that thumbs up or fire emoji to showcase your appreciation for an idea suggested by your colleague.

When you highlight a word or passage in a document, you’ll see an emoji button appear on the left side between the comment and edit buttons. Clicking on the emoji button brings up the emoji picker, with a search bar shown at the top and a row of frequently used reactions appearing at the bottom. Emoji reactions will appear on the right-hand side in documents, and they also have a counter.

  • Emoji set is updated to the latest version (Emoji 14.0), reflecting the latest emoji set with options to accurately reflect your identity
  • Gender-neutral options for gender-modifiable emojis
  • Emoji skin tone and gender preferences are saved per individual emoji

Google notes that emoji preferences are shared with Google Chat, “so so any preferences set in one app will be reflected in the other.” Google Meet recently picked up a similar feature, which allows users to drop emoji during an ongoing meeting.

Google originally announced emoji reactions for Google Docs at Google I/O last year. At the time, the company said the feature would arrive later in 2021.

Emoji reactions in Google Docs will start rolling out in the coming weeks. The feature will be available to Google Workspace Essentials, Business Starter, Business Standard, Business Plus, Enterprise Standard, and Enterprise Plus.

The new features come after Google Docs started rolling out new tone and style suggestions to help you enhance your writing style.


Source: Google Workspace blog

The post Google Docs will soon let you add emoji reactions to documents appeared first on xda-developers.



from xda-developers https://ift.tt/ctUX7V9
via IFTTT

mardi 5 avril 2022

How to Root your Android smartphone: Google, OnePlus, Samsung, Xiaomi, and others too!

Welcome to the XDA-Developers Root Directory. Here, you can find root tutorials for most devices that are on the XDA Forums. Learn how to root any Android device, even the best Android phones! If you don’t see your device listed or you see a misplaced link, send a message to Skanda Hazarika (SkandaH on the forums) with the device details.

Table of Contents:

What is Root?

For those new to the world of rooting, acquiring root access essentially grants you elevated permissions. With root access, you are able to alter or replace system applications and settings, run specialized apps that require administrator-level permissions or perform other operations that are otherwise inaccessible to a normal Android user. And by proxy, you may also be able to access certain “hidden” device features or use existing features in new ways.

DISCLAIMER: Rooting a device may void the warranty on the device. It may also make the device unstable or if not done properly, may completely brick the device. XDA-Developers or the author does not take any responsibility for your device. Root at your own risk and only if you understand what you are doing!


How to root a popular Android smartphone

We can go on about the virtues of root access ad infinitum, but we’ll stop for now because we can sense you’re salivating at the prospect of root access and what you can do with your device once root is achieved. Head to the following section to begin the journey. You should find device-specific root guides for latest flagship models from every major OEM below.

ASUS

For other ASUS devices, kindly check out the ASUS section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.

Google

For other Google devices, kindly check out the Google section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.

Motorola

Sr. No. Device Codename and Device Forum Root Guide
1. Motorola G100/Edge S nio Click Here
2. Motorola Edge 20 Pro/Edge S Pro pstar Click Here

For other Motorola devices, kindly check out the Motorola section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.

OnePlus

For other OnePlus devices, kindly check out the OnePlus section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.

Samsung

For other Samsung devices, kindly check out the Samsung section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.

Sony

Sr. No. Device Codename and Device Forum Root Guide
1. Sony Xperia 1 III pdx215 Click Here
2. Sony Xperia 5 III pdx214 Click Here
3. Sony Xperia 10 III pdx213 Click Here

For other Sony Xperia devices, kindly check out the Sony section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.

Xiaomi

For other Mi, Redmi, and POCO branded devices, kindly check out the Xiaomi section of our forums. You should be able to find similar fine-tuned guides for your device under the device sub-forums. You can also follow the generic rooting guide from this tutorial.


How to root any Android device

Nowadays, Magisk is the de-facto rooting solution that lets you have root access by leaving the system partition untouched and modifying the boot partition. This is why it’s referred to as a “systemless” root method.

Before getting started with Magisk, make sure that:

  • You have access to a PC/Mac with adb and fastboot installed.
  • The bootloader of the target Android device is unlocked.
    • For Samsung devices, unlocking the bootloader will trip KNOX.

Step 1: Identifying the type of the boot image

Download the latest version of the Magisk app from the project’s GitHub repository. Since the APK of Magisk is hosted outside of the Google Play Store, you may need to allow sideloading apps from unknown sources first and then manually install the downloaded package.

After installing, open the Magisk app. You should see a screen like this:

Magisk main app window

Now, we need to note down the values of the following parameters:

  • Ramdisk
  • A/B
  • SAR

Step 2: Locating the boot image

In order to patch the boot image for your device, you need to extract it from the official firmware packages. In case you’re using a custom ROM like LineageOS, then the flashable ZIP file contains the boot image.

Case I: You have access to the recovery-flashable ZIP file

If you have a device that still uses the A-only partition scheme, then you can find the boot.img right inside the recovery-flashable ZIP file. Just extract it using a suitable archiver program.

POCO M3 boot.img inside recovery ZIP

Notice the boot.img file inside POCO M3’s recovery ZIP

However, if your device utilizes the A/B partition scheme, then the boot image and other partition images are further packed inside a file named payload.bin as shown below.

Google Pixel 5 payload.bin inside recovery ZIP

The recovery ZIP of the Google Pixel 5 contains a payload.bin file

In that case, you have to extract the payload.bin file first, then use one of the community-developed payload.bin unpackers to get the boot.img out of it. We strongly suggest you opt for the extractor written in Go as it is cross-platform and has been actively developed.

Known as “payload-dumper-go”, this fork even allows end-users to extract a single partition image without unpacking the whole payload.bin, which is particularly useful for this usage scenario.

  • First, use the -l parameter to list the partition images inside the payload.bin.
    payload-dumper-go -l payload.bin
  • Then use the -p parameter with the name of the boot image (commonly stored as “boot”) to extract it.
    payload-dumper-go -p boot payload.bin
ASUS ROG Phone 5 boot.img from payload.bin

Extracting the boot.img of the ASUS ROG Phone 5 from its payload.bin

Case II: You have access to the Fastboot-flashable image

A handful of OEMs like Google and Xiaomi provide Fastboot-flashable factory images for their devices. If you managed to grab such a package, then the raw boot.img can easily be extracted from the archive.

Google Pixel 5 boot.img from Fastboot package

The location of the boot.img inside the Google Pixel 5’s Fastboot firmware

Special Case: Samsung

Samsung Galaxy devices don’t a traditional Fastboot interface, hence their factory images are packed differently.

  • Use Samsung Firmware Downloader to download the factory image for your model.
  • Unzip the decrypted package and locate the AP tar file to your device. It is normally named as AP_[device_model_sw_ver].tar.md5.

Step 3: Patching the boot image

Now that we have the boot image in hand, we should proceed with the patching part.

Case I: The value of the “Ramdisk” parameter is “Yes”

  • Copy the boot image to your device. In fact, you can patch it on a different Android device than the target one, but you need to install the Magisk app on the secondary device as well.
  • Press the Install button in the Magisk card.
  • Choose Select and Patch a File in Method, and select the stock boot image.

Magisk select and patch image

  • The Magisk app will patch the image to [Internal Storage]/Download/magisk_patched_[random_strings].img.

Magisk is patching a boot image

  • Copy the patched image to your PC with ADB:
    adb pull /sdcard/Download/magisk_patched_[random_strings].img
  • Flash the patched boot image to your device. For most devices, reboot into Fastboot mode and flash with the following command:
    fastboot flash boot /path/to/magisk_patched.img
  • Reboot and enjoy root access!

Keep in mind that it is possible to patch the boot image on the fly on legacy devices having boot ramdisk through a custom recovery like TWRP, but the method is no longer recommended on modern devices. Having said that, if you have an old phone and want to stick with the custom recovery route, the steps are as follows:

  • Download the Magisk APK.
  • Rename the .APK file extension to .ZIP (e.g. Magisk-v23.0.APK → Magisk-v23.0.ZIP).
  • Flash the ZIP file just like any other ordinary flashable ZIP.

Magisk flashing via TWRP

  • Note that the sepolicy.rule file of modules may be stored in the cache partition, so don’t clear it.
  • Check whether the Magisk app is installed. If it isn’t installed automatically, manually install the APK.

Case II: The value of the “Ramdisk” parameter is “No”

In this case, you need to locate the recovery.img file from the factory image of your device instead of boot.img file. This is because Magisk needs to be installed in the recovery partition, which means you will have to reboot to the recovery mode every time you want root access.

  • Copy the recovery image to your device (or a secondary device with the Magisk app installed).
  • Press the Install button on the Magisk card.
  • Choose “Select and Patch a File” in method, and select the stock recovery image.
  • The Magisk app will patch the image to [Internal Storage]/Download/magisk_patched_[random_strings].img.
  • Copy the patched image to your PC with ADB:
    adb pull /sdcard/Download/magisk_patched_[random_strings].img
  • Flash the patched recovery image to your device. For most devices, reboot into Fastboot mode and flash with the following command:
    fastboot flash recovery /path/to/magisk_patched.img
  • Reboot.

At this stage, there are three possible scenarios:

  • Power up normally: You’ll end up with no Magisk, i.e. no root access.
  • Recovery Key Combo → Splash screen → Release all buttons: The system should boot with Magisk and full root access.
  • Recovery Key Combo → Splash screen → Keep pressing volume up: To access the stock recovery mode.

Special Case: Samsung

  • Copy the extracted AP tar file to your device.
  • Press the Install button on the Magisk card.
  • If your device doesn’t have boot ramdisk, make sure Recovery Mode is checked in options.
  • Choose Select and Patch a File in Method, and select the AP tar file.
  • The Magisk app will patch the whole firmware file to [Internal Storage]/Download/magisk_patched_[random_strings].tar
  • Copy the patched tar file to your PC with ADB:
    adb pull /sdcard/Download/magisk_patched_[random_strings].tar
    • Don’t try to copy over the MTP interface as it is known to corrupt large files.
  • Reboot to download mode. Open Odin on your PC, and flash magisk_patched.tar as AP, together with BL, CP, and CSC from the original firmware.
    • Don’t choose HOME_CSC because we want to wipe data.
  • Your device should reboot automatically once Odin finished flashing. Agree to do a factory reset if asked.
  • If your device doesn’t have boot ramdisk, reboot to recovery now to enable Magisk.
  • Install the latest Magisk app and launch the app. It should show a dialog asking for additional setup. Let it do its job and the app will automatically reboot your device.
  • Reboot and enjoy root access!

Step 4: Verification

The last step is to verify that everything is working properly. Locate the newly installed Magisk app and open it. We want to see a version number beside the “Installed” parameter. This means you have successfully obtained root. Great job!

A successful installation of Magisk


One-Click Root Methods in 2021: Kingroot, KingoRoot, and others

A few years back, several generic root methods like Kingroot, KingoRoot, and others gained popularity as “one-click root” methods, promising root and related benefits with minimal steps and knowledge needed by the user. However, as Android has matured, these one-click root methods are no longer valid for modern smartphones and Android devices in 2021.

We strongly dissuade against the use of these generic root methods as they are either ineffective or worse, pack in malware that can greatly compromise your device and cause you losses. Practically all of these methods are no longer recommended. You should follow the steps listed above for an effective root solution for most Android devices.


We hope this guide not only points you to the right threads for rooting your device but also provides general rooting instructions that can be applied for a large majority of Android devices generally. We’ll be updating this guide with links to further guides for specific phones, so check back again in the future.

The post How to Root your Android smartphone: Google, OnePlus, Samsung, Xiaomi, and others too! appeared first on xda-developers.



from xda-developers https://ift.tt/wLxGDk8
via IFTTT

At a Glance widget on Pixel phones receives “Earthquake alert” and “Saftey check” countdown

The At a Glance widget on Pixel phones can do much more than just show weather and day/date info. It can display your upcoming events, flight boarding pass, Nest doorbell alerts, workout stats, and much more. The widget recently started showing Connected device info for your Bluetooth devices on the home screen and lock screen. And now it’s getting two more capabilities.

As spotted by 9to5Google, Google has started rolling out earthquake alert warnings and “Safety check” to At a Glance. These features were announced as part of the March Feature Drop last month, but it’s only now that they’re making their way to users. When an earthquake larger than magnitude 4.5 is detected in your area, At a Glance will display an alert on the home screen and lock screen. It should be noted that Android already has a built-in earthquake detection and alerts system. The system, developed in partnership with the United States Geological Survey (USGS,) uses sensors on your Android phone to detect earthquakes around the world and provides automatic early warnings to users.

At a Glance earchquake toggle At a Glance saftey check toggel Pixel

Screenshot credit: 9to5Google

In addition, At a Glance can now also display the Safety check countdown from the Personal Safety app. When you enable safety check, you’ll see the countdown timer appear in the At a Glance widget. This allows users to quickly glance at the timer from the home screen or lockscreen without having to keep the Personal Safety app open all the time.

Earthquake alert and Safety check features are rolling out to At a Glance on Pixel devices. To see if they’re available for you, long-press on the home screen, select “Home settings” from the pop-up menu, and tap on the gear icon.

Have you received “Earthquake alert” and “Safety check” toggles on your Pixel phone? Let us know in the comments below.


Source: 9to5Google

The post At a Glance widget on Pixel phones receives “Earthquake alert” and “Saftey check” countdown appeared first on xda-developers.



from xda-developers https://ift.tt/vsL4tol
via IFTTT

At a Glance widget on Pixel phones receives “Earthquake alert” and “Saftey check” countdown

The At a Glance widget on Pixel phones can do much more than just show weather and day/date info. It can display your upcoming events, flight boarding pass, Nest doorbell alerts, workout stats, and much more. The widget recently started showing Connected device info for your Bluetooth devices on the home screen and lock screen. And now it’s getting two more capabilities.

As spotted by 9to5Google, Google has started rolling out earthquake alert warnings and “Safety check” to At a Glance. These features were announced as part of the March Feature Drop last month, but it’s only now that they’re making their way to users. When an earthquake larger than magnitude 4.5 is detected in your area, At a Glance will display an alert on the home screen and lock screen. It should be noted that Android already has a built-in earthquake detection and alerts system. The system, developed in partnership with the United States Geological Survey (USGS,) uses sensors on your Android phone to detect earthquakes around the world and provides automatic early warnings to users.

At a Glance earchquake toggle At a Glance saftey check toggel Pixel

Screenshot credit: 9to5Google

In addition, At a Glance can now also display the Safety check countdown from the Personal Safety app. When you enable safety check, you’ll see the countdown timer appear in the At a Glance widget. This allows users to quickly glance at the timer from the home screen or lockscreen without having to keep the Personal Safety app open all the time.

Earthquake alert and Safety check features are rolling out to At a Glance on Pixel devices. To see if they’re available for you, long-press on the home screen, select “Home settings” from the pop-up menu, and tap on the gear icon.

Have you received “Earthquake alert” and “Safety check” toggles on your Pixel phone? Let us know in the comments below.


Source: 9to5Google

The post At a Glance widget on Pixel phones receives “Earthquake alert” and “Saftey check” countdown appeared first on xda-developers.



from xda-developers https://ift.tt/vsL4tol
via IFTTT

Redmi Note 11 Pro Plus 5G Unboxing: What’s in the box?

Xiaomi has an extensive portfolio in key Asian markets like India, China, Indonesia, and beyond. Thanks to its insane value, the Redmi Note series is one of the most popular mobile lineups globally. For 2022, Xiaomi has a full refresh for its Redmi Note lineup, with devices like the Redmi Note 11 Pro Plus 5G occupying the top-end within this branding. Xiaomi launched the Redmi Note 11 Pro Plus 5G in India in March, and the company launched another device with the same name for the global market as well. If you are wondering what do you get inside the box for the Indian Redmi Note 11 Pro Plus 5G, we’re here to answer that question for you.

What’s inside the Redmi Note 11 Pro Plus 5G (India) retail box?

Box contents from the retail packaging of the Xiaomi Redmi Note 11 Pro Plus 5G (Indian version)

The box of the Redmi Note 11 Pro Plus 5G (India) [device codename: peux] includes the following content:

  • Redmi Note 11 Pro Plus 5G (in the color you’ve chosen)
  • Mi 67W SonicCharge 3.0 Charger
  • USB-A to USB-C cable
  • Basic TPU/silicon case
  • SIM ejection tool
  • Region-specific documentation, including Quick Start Guide

Xiaomi packs in a fair bit when it comes to its retail phone boxes. Unlike other OEMs who have adopted a charger-less packaging for even their mid-range devices, Redmi is including a charger in the box, at least so far. And you don’t just get any ordinary charger with the Redmi Note 11 Pro Plus 5G — you get the 67W Mi SonicCharge 3.0 charger, which is a Qualcomm Quick Charge 3.0 charger that you can use to charge devices beyond your smartphone as well. Xiaomi also includes a fairly basic case for the device too, and the phone comes with a basic screen protector applied.

    Redmi Note 11 Pro Plus 5G (India)
    The Redmi Note 11 Pro Plus 5G is one of Xiaomi's mid-range offerings for the Indian market. Featuring well rounded specifications, the phone has everything that most average users would require.

All in all, you have everything in the box to get you started with using the device properly, though we do recommend switching out the case for something a bit more protective or fashionable a few months down the line.

The post Redmi Note 11 Pro Plus 5G Unboxing: What’s in the box? appeared first on xda-developers.



from xda-developers https://ift.tt/2rUeq3C
via IFTTT

Redmi Note 11 Pro Plus 5G Unboxing: What’s in the box?

Xiaomi has an extensive portfolio in key Asian markets like India, China, Indonesia, and beyond. Thanks to its insane value, the Redmi Note series is one of the most popular mobile lineups globally. For 2022, Xiaomi has a full refresh for its Redmi Note lineup, with devices like the Redmi Note 11 Pro Plus 5G occupying the top-end within this branding. Xiaomi launched the Redmi Note 11 Pro Plus 5G in India in March, and the company launched another device with the same name for the global market as well. If you are wondering what do you get inside the box for the Indian Redmi Note 11 Pro Plus 5G, we’re here to answer that question for you.

What’s inside the Redmi Note 11 Pro Plus 5G (India) retail box?

Box contents from the retail packaging of the Xiaomi Redmi Note 11 Pro Plus 5G (Indian version)

The box of the Redmi Note 11 Pro Plus 5G (India) [device codename: peux] includes the following content:

  • Redmi Note 11 Pro Plus 5G (in the color you’ve chosen)
  • Mi 67W SonicCharge 3.0 Charger
  • USB-A to USB-C cable
  • Basic TPU/silicon case
  • SIM ejection tool
  • Region-specific documentation, including Quick Start Guide

Xiaomi packs in a fair bit when it comes to its retail phone boxes. Unlike other OEMs who have adopted a charger-less packaging for even their mid-range devices, Redmi is including a charger in the box, at least so far. And you don’t just get any ordinary charger with the Redmi Note 11 Pro Plus 5G — you get the 67W Mi SonicCharge 3.0 charger, which is a Qualcomm Quick Charge 3.0 charger that you can use to charge devices beyond your smartphone as well. Xiaomi also includes a fairly basic case for the device too, and the phone comes with a basic screen protector applied.

    Redmi Note 11 Pro Plus 5G (India)
    The Redmi Note 11 Pro Plus 5G is one of Xiaomi's mid-range offerings for the Indian market. Featuring well rounded specifications, the phone has everything that most average users would require.

All in all, you have everything in the box to get you started with using the device properly, though we do recommend switching out the case for something a bit more protective or fashionable a few months down the line.

The post Redmi Note 11 Pro Plus 5G Unboxing: What’s in the box? appeared first on xda-developers.



from xda-developers https://ift.tt/2rUeq3C
via IFTTT

Realme Pad Mini packs an 8.7-inch display and a 6,400mAh battery in a slim body

Realme joined the Android tablet bandwagon with the Realme Pad last year. Now the Chinese company has released a brand new tablet called the Realme Pad Mini. The latest tablet focuses on portability and affordability and offers a decent hardware package, including an 8.7-inch display, a slim design, and a large battery.

Realme Pad Mini: Specifications

Specification Realme Pad Mini
Dimensions and Weight
  • 211.8 x 124.5 x 7.6mm
  • 372g
Display
  • 8.7-inch LCD
  • 1340 x 800
  • 60Hz screen refresh rate
  • Sunlight mode
SoC
  • Unisoc T616 octa-core chipset
    • Up to 2.0GHz
    • Arm Mali G57 GPU
RAM and Storage
  • 3GB/4GB RAM
  • 32/64GB flash storage
  • MicroSD card support
Battery & Charging
  • 6,400 mAh battery
  • 18W fast charger (inside the box)
Rear Camera
  • 8MP primary shooter
Front Camera
  • 5MP front-facing camera
Ports
  • USB Type-C port
  • 3.5mm headphone jack
Connectivity
  • 4G LTE
  • Bluetooth 5.0
  • Type-C port
  • WiFi 802.11.b/g/n/ac (2.4GHz + 5GHz)
Other features
  • Dual stereo speakers
Software
  • Android 11 with Realme UI for Pad

If you’re looking for a cheap Android tablet with an iPad Mini-like form factor, the Realme Pad Mini certainly fits the bill. It features a slim design with narrow side bezels and rounded corners. The front of the tablet is dominated by an 8.7-inch LCD, offering a 1340 x 800 screen resolution and sunlight mode support.

Realme Pad Mini blue

On the inside, the Realme Pad Mini is powered by a Unisoc T616 octa-core chipset, paired with 3GB/4GB RAM and 32GB/64GB flash storage. In terms of cameras, there’s a single 8MP shooter on the back housed in a rectangular island and a 5MP front-facing camera embedded into the top bezel.

Realme Pad Mini features

The Realme Pad Mini packs a 6,400mAh battery and supports fast charging via an 18W charger. Other highlights of the tablet include 4G LTE support, dual stereo speakers, Bluetooth 5.0, dual-band Wi-Fi, and microSD card support. The Realme Pad Mini runs Android 11 out of the box with Realme UI for Pad on top.

Pricing & Availability

The Realme Pad Mini is available for pre-order in the Philippines starting today. Available in Gray and Blue colors, the tablet is priced at PHP9,990 (~$195) for the base model and PHP11,990 (~$235) for the top variant. Realme hasn’t shared any details about the international availability of the tablet.


Source: Lazada
Via: GSMArena

The post Realme Pad Mini packs an 8.7-inch display and a 6,400mAh battery in a slim body appeared first on xda-developers.



from xda-developers https://ift.tt/fDCF6mX
via IFTTT