Google Is Giving My Phone Habits Just the Right Boost With These 3 New Android Features


Google’s latest Android Show showed new Gemini features that, for the first time, have me excited about having AI on my phone — and none of it involves generating soulless images or summarizing things (seriously, can we stop summarizing everything).

The new Android 17 features prioritize personalization and mindful design. They recognize that phone usage differs from person to person. That’s why seeing Google show off features for speeding up a few useful things and prioritizing how I take breaks from my phone is great to see. 

These three Android 17 features are my favorite announcements, and here’s why I think they will transform how I use my Android phones.

Watch this: Android’s Biggest AI Update: Everything to Know About Gemini Intelligence

1. Rambler for personalized speech-to-text

Speech-to-text has existed for several years, and the new Rambler feature uses AI to improve it. Instead of my having to tap the microphone and dictate verbatim what I want to say, the feature will use Gemini to take the important parts of what I’m saying to create a concise message. But that’s not the best part; Google is using its lead in translation and language understanding to build this for multilingual people.

As someone who speaks English and Hindi in daily life, much of my personal communication is a mix of both languages. Rambler can seamlessly switch between languages within a single message, Google says. It uses Gemini’s advanced multilingual model, which allows it to understand context and nuance. So, when you’re blending two languages in speech (English and Hindi, in my case), it can easily convert your message to text in the way you intended.

The app Wispr Flow can do the same to some extent, too. But Google’s version is more promising because it has all my data, which can be used for more personalized recommendations. Hopefully, that means it can create sentences that sound like how I speak and messages that remain natural and personal to me.

Personalization is important to me because I don’t want to sound robotic in any of my written communication. I currently don’t use AI speech-to-text services because I want my texts to continue to convey my personality. I hope that Rambler can keep the enthusiastic, excited, emotional and messiness of my texts. If it can, this might be the first speech-to-text feature I’d use in daily life.

Rambler should make it easier to tell your phone what to write, since it will use AI to make a concise message.

Google / Patrick Holland

2. Pause Point to quit autopilot app use

Google’s new Pause Point feature doesn’t use any AI, but it could be even more helpful for stopping myself from doomscrolling. Picking up my phone, seeing a notification and then getting trapped in social media happens to me more frequently than I realize, and it’s made me become more mindful of my phone usage.

Pause Point will give you a 10-second breather whenever you open a distracting app. (I’m going to set it up for Instagram and X.) During that time, you can do a short breathing exercise or set a timer to avoid scrolling too long. You can also use this 10-second pause to look at some favorite photos or jump to alternative app suggestions. I’d love to be suggested my favorite playlists whenever I tap on Instagram out of habit.

Since our willpower isn’t enough to stop us (I know mine isn’t), Google is making it harder to disable Pause Point once it’s set up. If you want to turn off the feature, you’ll be required to restart your phone. This is going to be frustrating, but I’m all in for anything that helps me quit my autopilot app use.

Create My Widget screenshot

Now you can ask Gemini to create a widget for your home screen with just a prompt. 

Google / Patrick Holland

3. Create My Widget for more personalized widgets

Whenever I switch from a Samsung Galaxy phone, I miss having a transparent Calendar widget alongside a multi-city clock on my home screen. I need it on all my phones, regardless of the Android skin I’m using. And Android 17 will finally allow me to create custom widgets the way I like.

Create My Widget is another Gemini Intelligence-based feature that can help personalize your phone more than ever. You can build custom widgets by describing what you want using natural language. Google’s example includes a meal prepper who can ask Create My Widget to “Suggest three high-protein meal prep recipes every week,” and it will build a custom dashboard that they can add to their home screen.

I can see myself creating a dashboard that consists of a multi-timezone clock, travel information and (maybe) sleep data from my Oura Ring 4, all in one place. I hope it can connect through multiple apps to create such widgets. Google will roll out Create My Widget feature across its different platforms, including Wear OS and Googlebooks.

The Pixel 10 Pro XL Goes to Paris: Out of Hundreds of Photos, These Are My Favs

See all photos





Source link

Leave a Reply

Subscribe to Our Newsletter

Get our latest articles delivered straight to your inbox. No spam, we promise.

Recent Reviews


Install ElasticSearch – Table of Content

In this tutorial, you will learn the general features of Elasticsearch and how to install the elasticsearch step by step.

                       Become a Elasticsearch Certified professional  by learning Elasticsearch online course from hkrtrainings! 

Elasticsearch key features:

The following are the curated features of elasticsearch. They are:

  • Elasticsearch can handle unstructured data up to petabytes in size.
  • Elasticsearch can be used to replace document stores such as MongoDB and RavenDB.
  • Denormalization is used by Elasticsearch to improve search performance.
  • Elasticsearch is a popular enterprise search engine that is currently used by many large organizations such as Wikipedia, The Guardian, StackOverflow, GitHub, and others.
  • Elasticsearch is open source and distributed under the Apache License 2.0. 

Now we will learn about the installation of elasticsearch step by step.

Installation of Elasticsearch:

Step1: Explore the version of Java that is installed on your computer. Java 7 or higher is required. You can double-check by doing the following:

In the Windows Operating System (OS) (via the command prompt)

>java-version

In UNIX OS (Using Terminal) −

$ echo $JAVA_HOME

Step2: Download Elasticsearch from www.elastic.co, as indicated below, depending on your operating system.

  • Download the ZIP file for Windows.
  • Download the TAR file for UNIX OS.
  • Download the DEB file for Debian OS.
  • Download the RPN file for Red Hat and other Linux distributions.
  • In many Linux distributions, the APT and Yum utilities can also be used to install Elasticsearch.

Step3:

Elasticsearch installation is straightforward, as described below for various operating systems.Windows Operating System Elasticsearch is installed after unzipping the zip package.UNIX Operating System Elasticsearch is installed after extracting the tar file to any location.

$wget

https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch7.0.0-linux-x86_64.tar.gz

$tar -xzf elasticsearch-7.0.0-linux-x86_64.tar.gz

  • Use the APT utility for Linux OS− Download and install the Public Signing Key

$ wget -qo – https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo

apt-key add –

Save the repository definition as shown below −

$ echo “deb https://artifacts.elastic.co/packages/7.x/apt stable main” |

sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list

  • Perform run update function using the below command.

$ sudo apt-get update

ElasticSearch Training

  • Master Your Craft
  • Lifetime LMS & Faculty Access
  • 24/7 online expert support
  • Real-world & Project Based Learning

Now you need to install by using the following command −

$ sudo apt-get install elasticsearch

  • Now download and install the Debian package manually using the command given here −

$wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch7.0.0-amd64.deb

$sudo dpkg -i elasticsearch-7.0.0-amd64.deb0

  • Using YUM utility for Debian Linux OS

Download and install the Public Signing Key −

$ rpm –import https://artifacts.elastic.co/GPG-KEY-elasticsearch

  • ADD the following text in the file with the .repo suffix in your “/etc/yum.repos.d/” directory. For example, elasticsearch.repo

elasticsearch-7.x]

name=Elasticsearch repository for 7.x packages

baseurl=https://artifacts.elastic.co/packages/7.x/yum

gpgcheck=1

gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch

enabled=1

autorefresh=1

type=rpm-md

  • Now you can now install Elasticsearch by using the following command

sudo yum install elasticsearch

Step4: Navigate to the bin folder in the Elasticsearch home directory. In the case of Windows, run the elasticsearch.bat file, or in the case of UNIX, use command prompt and terminal to run the Elasticsearch file.

In Windows

> cd elasticsearch-2.1.0/bin

> elasticsearch

Big Data Analytics, install-elasticsearch-description-0, Big Data Analytics, install-elasticsearch-description-1

Subscribe to our YouTube channel to get new updates..!

In Linux

$ cd elasticsearch-2.1.0/bin

$ ./elasticsearch

Step5: The default port for the Elasticsearch web interface is 9200, but this can be changed by changing http.port in the elasticsearch.yml file located in the bin directory. To see if the server is up and running, go to http://localhost:9200. It will return a JSON object containing information about the installed Elasticsearch in the format shown below.

{

   "name" : "Brain-Child",

   "cluster_name" : "elasticsearch", "version" : {

      "number" : "2.1.0",

      "build_hash" : "72cd1f1a3eee09505e036106146dc1949dc5dc87",

      "build_timestamp" : "2015-11-18T22:40:03Z",

      "build_snapshot" : false,

      "lucene_version" : "5.3.1"

   },

   "tagline" : "You Know, for Search"

}

Step6: Now we should install Kibana. Follow the respective code given below for installing on Linux and Windows −

For Installation on Linux −

wget https://artifacts.elastic.co/downloads/kibana/kibana-7.0.0-linuxx86_64.tar.gz

tar -xzf kibana-7.0.0-linux-x86_64.tar.gz

cd kibana-7.0.0-linux-x86_64/

./bin/kibana

For Windows Installation

Kibana for Windows can be downloaded from https://www.elastic.co/products/kibana. When you click the link, you will be taken to the home page, as shown below.

installation_on_windows

Unzip and go to the Kibana home directory in order to run it. 

CD c:\kibana-7.0.0-windows-x86_64

.\bin\kibana.bat

ElasticSearch Training

Weekday / Weekend Batches

Conclusion:

In the above blog post we had explained about the installation steps of elasticsearch both for linux and windows operating system. Had any queries drop them in the comments section to get them resolved.

Related Articles:



Source link