Skip to main content

Vivo X60 Spacification


Display:

  • 6.56-inch AMOLED display
  • 2376 x 1080 pixels resolution
  • 120Hz refresh rate
  • HDR10+ support

Processor:

  • Qualcomm Snapdragon 870
  • Octa-core (1 x 3.2 GHz Kryo 585 + 3 x 2.42 GHz Kryo 585 + 4 x 1.8 GHz Kryo 585)
  • Adreno 650 GPU

RAM and Storage:

  • 8GB/12GB of RAM
  • 128GB/256GB of UFS 3.1 storage

Rear Camera:

  • 48MP main sensor with f/1.79 aperture, OIS, and EIS
  • 13MP ultrawide sensor with f/2.2 aperture
  • 13MP telephoto sensor with f/2.46 aperture and 2x optical zoom

Front Camera:

  • 32MP sensor with f/2.45 aperture

Battery:

  • 4300mAh battery
  • 33W fast charging

Software:

  • Android 11 with Funtouch OS 11.1

Other Features:

  • In-display fingerprint sensor
  • Face unlock
  • NFC
  • Bluetooth 5.1
  • Wi-Fi 6
  • 5G support

Dimensions and Weight:

  • 159.63 x 75.01 x 7.36mm
  • 176g (Midnight Black)
  • 177g (Shimmer Blue)

Price:

  • The vivo X60 starts at ₹37,990 in India.

Overall, the vivo X60 is a great smartphone with a lot to offer. It has a powerful processor, a beautiful display, a versatile camera system, and a long-lasting battery. It is also very affordable, making it a great option for budget-minded users.

Comments

Popular posts from this blog

Why cromecast need internet access?

  Chromecast devices require internet access for several reasons: Content Streaming: Chromecast devices primarily function as streaming devices, enabling users to cast content from various streaming services like Netflix, Hulu, Disney+, YouTube, and many more. This content is hosted on the internet, and Chromecast needs an internet connection to access and stream it to your TV. Device Setup and Updates: During the initial setup process, Chromecast devices need to connect to the internet to download and install the necessary software and updates. This ensures that your device is running the latest version of the Chromecast software, providing optimal performance and security. Content Casting: Even when casting content from your local device, such as a smartphone or tablet, Chromecast still requires an internet connection. This is because the casting process involves communicating with the Chromecast device over the internet to initiate the casting session, ...

How edit host file in windows 10 and windows 11

  Editing the hosts file in Windows 10 and Windows 11 can be done using a text editor like Notepad. However, since the hosts file is a system file, you will need to run Notepad as an administrator to make changes. Here are the steps on how to do it: Windows 10: Open Notepad. Right-click on the Notepad icon in the taskbar and select "Run as administrator. " In the Notepad window, click on the "File" menu and select "Open. " Navigate to the following location: C: \Windows\System32\drivers\etc Select the "hosts" file and click on the "Open" button. Make the desired changes to the hosts file. Click on the "File" menu and select "Save. " Windows 11: Open Notepad. Click on the file menu and select "Open with". Select "Notepad (Administrator)" from the list of apps. In the Notepad window, click on the "File" menu and select "Open. " Navigate to the following lo...

Lottie animation as a splash activity in Android 12+

Setting a Lottie animation as a splash activity in Android 12+ involves a few key steps, primarily leveraging the  SplashScreen  API introduced in Android 12 (API level 31). Here's a comprehensive guide: 1. Add Dependencies: Make sure your project uses Android Gradle Plugin 7.0.0 or higher and Gradle 7.0 or higher. Add the necessary dependencies to your module-level  build.gradle  file: dependencies { implementation 'androidx.core:core-splashscreen:1.0.1' // Or latest version implementation 'com.airbnb.android:lottie:latest_version' // Or latest version } 2. Create Your Lottie Animation: Design or obtain your Lottie animation file ( .json ). Place the animation file in your  res/raw  folder. If the  raw  folder doesn't exist, create it. 3. Implement the Splash Screen: In your  AndroidManifest.xml , set the theme of your splash activity to a theme that extends  Theme.SplashScreen : < resources > < style name = "The...