Skip to main content

Google expected to launch Pixel 2!


Google is prepping to launch the Pixel 2 and Pixel XL 2 in October, specifically October 5. At least that's according to Twitter tipster @evleaks, aka Evan Blass, who has proven a reliable source on pretty much everything in the past, so we think this is 100% legit. 

Pixel XL 2 will be manufactured by LG, while Pixel 2 will be made by HTC

virtually bezel-less display

Google Pixel XL 2 won’t be the only smartphone with a bezel-less display. Samsung Galaxy S8, S8+ already have Infinity Displays with no bezels on the sides and reduced bezels on top. The newly launched Galaxy Note 8 also has the same display. Apple iPhone 8 is also supposed to get rid of the bezels and opt for a full-frontal display with no home button. Xiaomi Mi Mix 2 will also launch in September with no bezels at all.

However, sources claims that the standard Pixel 2 will have a 4.97-inch screen, while a larger model will land with a 5.99-inch one.
While Pixel 2 XL will have a 6-inch AMOLED screen, supplied by LG.

Google Pixel 2 XL Specs

Google Pixel 2 XL is being strongly linked with the new Snapdragon 836 chipset.(This is obviously an update over the 835 version that appeared in other flagship devices earlier this year, such as the aforementioned Galaxy S8)
Snapdragon 836 will be an octa-processor with the same 10nm FinFET design and clock speeds of up to 2.5 GHz. The Google Pixel 2 is codenamed ‘walleye’ while the Pixel XL 2 has the codename Taimen. The Pixel 2 was also spotted in a FCC (Federal Communications Commission) filing and the phone could also have ‘squeezable’ edge sensors like the HTC U11. Both the phones are expected to run Android Oreo when they launch.

Water resistance

It's also rumored that the Pixel 2 will come with a waterproof design. A Senior Editor at 9to5Google reported a source has said the phone will be dunkable when it's released.

May lack a 3.5mm headphone jack

We've seen newer renders that claim to show off the final design of the Pixel 2 family of phones. Much of it falls in line with what we've seen previously, but the most noteworthy change is the lack of 3.5mm headphone jack.
Further case renders from Olixar (which you can see below) add to the suspicion the Pixel 2 and Pixel 2 XL will drop the legacy tech, while separate sources for 9to5Google Managing Editor Stephen Hall add more fuel to the 'no headphone jack' fire.

The Google Pixel 2 is rumoured to run Android 8.0.4GB of RAM64GB or 128GB of storage12MP rear and 7MP front-facing camerasImprovements over the Pixel's cameraRear-facing fingerprint scanner

Price considerations

According to sources the Pixel 2 will apparently carry a loftier price tag than its predecessors - something we hope doesn't turn out to be true. The old one started at $649 (£599, AU$1,079), or $769 (£719, AU$1,269) for the XL version, so it was already expensive.

References:

https://www.valuewalk.com/2017/08/google-pixel-2-xl-specs/?all=1http://www.gadgetsnow.com/mobile-phones/Google-Pixel-2

Comments

Popular posts from this blog

Short explanation on Gradle, minSdkVersion, maxSdkVersion, compileSdkVersion and targetSdkVersion in Android

Gradle : The Android build system compiles app resources and source code, and packages them into APKs that you can test, deploy, sign, and distribute. Android Studio uses Gradle . The Android plugin for Gradle works with the build toolkit to provide processes and configurable settings that are specific to building and testing Android applications. Gradle and the Android plugin run independent of Android Studio. Gradle architecture is shown below. Example: android { compileSdkVersion 27 buildToolsVersion “26.0.2” defaultConfig { applicationId “com.example.checkyourtargetsdk" minSdkVersion 15 targetSdkVersion 27 versionCode 1 versionName “1.0” } } minSdkVersion : minSdkVersion is the lower bound for your app . The minSdkVersion is one of the signals the Google Play Store uses to determine which of a user’s devices an app can be installed on.  your app’s minSdkVersion must be at least as high as your dependencies’ minSdkVe

Google re-branded the support Android libraries to AndroidX

It is important to note, you cannot mix AppCompat and Jetpack in the same project. You must convert everything to use Jetpack if you want to upgrade. The support library artifacts are being deprecated and all future development is going into AndroidX , so there's no avoiding this migration. Alan Viverette sums this up nicely: “There won’t be a 29.0.0, so Android Q APIs will only be in AndroidX” The stable release of 28.0.0 will be the final feature release packaged as android.support . All subsequent feature releases will only be made available as androidx-packaged artifacts. Below tips will give you a clearer transition path. The current version of AppCompat (v28.x) is exactly the same as AndroidX (v1.x). In fact, the AppCompat libraries are machine generated by changing maven coordinates and package names of the AndroidX codebase. For example, android.support.v7.app.AppCompatActivity is now androidx.appcompat.app.AppCompatActivity For a complete listi

Android Beginners Guide

                                                                                                               Android Operation System: Android is an operating system based on Linux with a Java programming interface. It provides tools, e.g. a compiler, debugger and a device emulator as well as its own Java Virtual machine (Dalvik Virtual Machine - DVM). Android is created by the Open Handset Alliance which is lead by Google. Android uses a special virtual machine, e.g. the Dalvik Virtual Machine. Dalvik uses special bytecode. Therefore you cannot run standard Java bytecode on Android. Android provides a tool "dx" which allows to convert Java Class files into "dex" (Dalvik Executable) files. Android applications are packed into an .apk (Android Package) file by the program "aapt" (Android Asset Packaging Tool) To simplify development Google provides the Android Development Tools (ADT) for Eclipse. The ADT performs automatically the conversion f