Saturday 22 October 2016

Mobile World : Pixel Phone By Google | Google Pixel

Hello Friends,

Google Pixel smartphone was launched in October 2016 which comes with a 5.00-inch touchscreen display and a resolution of 1080 pixels by 1920 pixels at a PPI of 441 pixels per inch.

The Google Pixel is powered by 1.6GHz quad-core Qualcomm Snapdragon 821 processor and it comes with 4GB of RAM. The phone packs 32GB of internal storage cannot be expanded. As far as the cameras are concerned, the Google Pixel packs a 12.3-megapixel primary camera on the rear and a 8-megapixel front shooter for selfies.

The Google Pixel runs Android 7.1(Nougat) and is powered by a 2770mAh non removable battery. It measures 143.80 x 69.50 x 8.60 (height x width x thickness) and weighs 143.00 grams.

The Google Pixel is a single SIM (GSM) smartphone that accepts a Nano-SIM. Connectivity options include Wi-Fi, GPS, Bluetooth, NFC, 4G (with support for Band 40 used by some LTE networks in India). Sensors on the phone include Proximity sensor, Ambient light sensor, Accelerometer, and Gyroscope.

The Google Pixel smartphones come in three colors with rather descriptive names - Quite Black, Very Silver, and the limited edition Really Blue.





Google Pixel detailed specifications

GENERAL
Release date October 2016
Form factor Touchscreen
Dimensions (mm) 143.80 x 69.50 x 8.60
Weight (g) 143.00
Battery capacity (mAh) 2770
Removable battery No
Colours Very Silver, Quite Black, Really Blue
SAR value NA

DISPLAY
Screen size (inches) 5.00
Touchscreen Yes
Resolution 1080x1920 pixels
Pixels per inch (PPI)  441

HARDWARE
Processor 1.6GHz  quad-core
Processor make Qualcomm Snapdragon 821
RAM 4GB
Internal storage 32GB

CONNECTIVITY
Wi-Fi Yes
Wi-Fi standards supported 802.11 a/ b/ g/ n/ ac
GPS Yes
Bluetooth Yes, v 4.20
NFC Yes
Infrared No
USB OTG No
Headphones 3.5mm
FM No
SIM Type Nano-SIM
GSM/ CDMA GSM
3G Yes
4G/ LTE Yes
Supports 4G in India (Band 40) Yes

SOFTWARE
Operating System  Android 7.1

CAMERA
Rear camera 12.3-megapixel
Flash Yes
Front camera 8-megapixel

SENSOR
Compass/ Magnetometer Yes
Proximity sensor Yes
Accelerometer Yes
Ambient light sensor Yes
Gyroscope Yes
Barometer Yes
Temperature sensor No


Keep In touch for latest mobile world related updates.

Enjoy :)

Thursday 15 September 2016

Android black screen before splash appear | Black screen on app start | How to avoid black screen in android while app is loading?


Hello Friends,
          Have you facing the delay issue on app launch and black/white
screen will be appearingfor few seconds. Here is the solution of this
issue.

1. Inside styles.xml add below style:
     
     <style name="Theme.AppCompat.Light.NoActionBar.FullScreen"
    parent="@android:style/Theme.Black.NoTitleBar">
   <item name="windowNoTitle">true</item>
   <item name="windowActionBar">false</item>
   <item name="android:windowFullscreen">true</item>
   <item name="android:windowContentOverlay">@null</item>
   <item name="android:windowIsTranslucent">true</item>
</style>

2. Inside your AndroidManiest.xml file add above style to your  Splash Activity:
    <activity
    android:configchanges="orientation|
    keyboardHidden|screenSize"
    android:label="@string/app_name"
    android:name=".SplashScreenActivity"
    android:screenorientation="portrait"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen">
       <intent-filter>
        <action android:name="android.intent.action.MAIN">
            <category android:name="android.intent.category.LAUNCHER">
            </category></action></intent-filter>
 </activity>


Hope, this will helps someone.
Enjoy Coding... Cheers.. :)



Wednesday 22 June 2016

App crashed on launch | Android Studio App crashed on launch | App crashed on launch- Android 4.4

Hello friends,

Today I found the strange issue while making an signed/released Apk.

My app getting crashed when app launched on Android 4.4, 4.2 and other devices
and Its working fine with Debug build. After spending lots of time I found that the
issue is with Android studio 2.0 or higher.

The reason of crash is in Android studio 2.0 and higher Google added a new feature
of Instant Run which makes your development/emulation faster.The Instant run is
enabled in latest android studio. We need to make it disable while making a signed
release build.

Steps to Disable:
1. Open the Settings or Preferences dialog: On Windows or Linux, select File > Settings
    from the main menu. On Mac OSX, select Android Studio > Preferences from
    the main menu.
2. Navigate to Build, Execution, Deployment > Instant Run.
3  Unchecked the box next to Enable Instant Run to hoot swap code/resource
    changes on display. 



What is Instant Run??
Instant Run: This feature is supposed to dramatically improve your workflow by letting you quickly see changes running on your device or emulator. It lets you see your changes running “in a near instant,” which means you can continuously code and run your app, hopefully accelerating your edit, build, run cycles. When you click on the Instant Run button, it will analyze the changes you have made and determine how it can deploy your new code in the fastest way. Instant Run works with any Android Device or emulator running API 14 (Ice Cream Sandwich) or higher.


Hope this will help someone.
Enjoy Coding.... :)

 

Copyright @ 2013 Android Developers Blog.