Skip to main content

Customize your phone to Android 8.0 look

Google launched its latest version of Android OS, 8.0 Oreo in the end of 2017. Many manufacturer's have already started using it out to their devices. While different manufacturer's have their own user interface layered on the Android OS, Pixel and Nexus smartphones carry pure Android UI, which is simple to use

Motorola and Nokia too use stock Android but that is not as vanilla as the ones found in Pixel and Nexus devices. If you are using one of the smartphones above smartphones and you want to experience how Android Oreo feels like in your device, follow these steps. It's really easy.

Step 1 - Go to 'Settings'

Step 2 - Search for 'Unknown Sources' and allow the device to download apps from unknown sources.

Step 3 - Go to GitHub page - Click here

Step 4 - Tap on 'Rootless Pixel Launcher 2.1' and tap on 'Launcher3-aosp-debug.apk'

Step 5 - Download the apk file and install it.

Step 6 - Once you installed, tap on the home button to reach the home screen.

Step 7 - Tap on 'Always' when a prompt is shown for the Launcher3 app.
              In another case goto settings page, search for the launcher and change it to Launcher3.

Once done, you will see the same translucent app dock that can be scrolled up to access the drawer. The pill-shaped Google search button is also present at the top corner and swiping from left to right will open the personalised Google Now cards, similar to what we have seen in stock Android devices.



It is easy to uninstall the app as well. You can simply navigate to the 'Apps' section in the 'Settings' and tap on 'Uninstall' to remove the app. The home screen launcher will switch back to what was there as a default.

Comments

Popular posts from this blog

Normalization in DBMS: 1NF, 2NF, 3NF and BCNF in Database

Normalization is a process of organizing the data in database to avoid data redundancy, insertion anomaly, update anomaly & deletion anomaly. Let’s discuss about anomalies first then we will discuss normal forms with examples. Anomalies in DBMS There are three types of anomalies that occur when the database is not normalized. These are – Insertion, update and deletion anomaly. Let’s take an example to understand this. Example : Suppose a manufacturing company stores the employee details in a table named employee that has four attributes: emp_id for storing employee’s id, emp_name for storing employee’s name, emp_address for storing employee’s address and emp_dept for storing the department details in which the employee works. At some point of time the table looks like this: emp_id emp_name emp_address emp_dept 101 Rick Delhi D001 101 Rick Delhi D002 123 Maggie Agra D890 166 Glenn Chennai D900 166 Glenn Chennai D004 The above table ...

Downloading Cassandra in Ubuntu 16.04

Installation from Debian packages For the <release series> specify the major version number, without dot, and with an appended x . The latest <release series> is 311x . For older releases, the <release series> can be one of 30x , 22x , or 21x . Add the Apache repository of Cassandra to /etc/apt/sources.list.d/cassandra.sources.list , for example for the latest 3.11 version: echo "deb http://www.apache.org/dist/cassandra/debian 311x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list Add the Apache Cassandra repository keys: curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add - Update the repositories: sudo apt-get update If you encounter this error: GPG error: http://www.apache.org 311x InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A278B781FE4B2BDA Then add the public key A278B781FE4B2BDA as follows: sudo apt-key adv --keyser...

Node.js - Introduction to Node.js

Introduction to Node.js The modern web application has really come a long way over the years with the introduction of many popular frameworks such as bootstrap, Angular JS, etc. All of these frameworks are based on the popular JavaScript framework. But when it came to developing server based applications there was just kind of a void, and this is where Node.js came into the picture. Node.js is also based on the JavaScript framework, but it is used for developing server-based applications. While going through the entire tutorial, we will look into Node.js in detail and how we can use it to develop server based applications. What is Node.js? Node.js is an open-source, cross-platform runtime environment used for development of server-side web applications. Node.js applications are written in JavaScript and can be run on a wide variety of operating systems. Node.js is based on an event-driven architecture and a non-blocking Input/Output API that is designed to optimize an appli...