Update
07:10
Showing posts with label Android Q. Show all posts
Showing posts with label Android Q. Show all posts
Saturday, 6 July 2019
Thursday, 30 May 2019
Update
10:55
Motorola introduces value-minded Moto Z4 with Moto mod support
Motorola Moto Z4 with Moto mod support
LUNCH
MOTO Z4 |
Motorola's new Moto Z4 looks to be a viable alternative to the recently released Google Pixel 3a and other reasonably priced handsets in the competitive mid-range category. Moto mod support - namely the 5G mod - will help future-proof the device a bit although by the time 5G networks are commonplace, you will have likely moved on to a newer handset.
Motorola on Thursday officially unveiled its next mid-range smartphone, the Moto Z4, just days after Amazon accidentally spilled the beans with a full-on product page (and even sold one to a customer).
The Moto Z4 packs a 6.4-inch OLED display boasting a resolution of 2,340 x 1,080 pixels (85 percent scree-to-body ratio, 19:9 aspect ratio). It’s powered by a Qualcomm Snapdragon 675 octa-core processor and Adreno 608 graphics alongside 4GB of memory and 128GB of local storage that’s expandable via microSD card slot.
MOTO Z4 |
You also get an in-display fingerprint sensor and face unlock technology as well as a 48-megapixel rear-facing camera with f/1.7 aperture that combines four pixels into one to output higher-quality 12-megapixel images. The selfie camera, meanwhile, is a 25-megapixel sensor with f/2.0 aperture that uses the same Quad Pixel technology to turn out 6.25-megapixel photos.
A 3.5mm headphone jack comes standard, as does Android 9 Pie, a 3600mAh non-removable battery with up to two days of battery life and Moto mod support.
The Moto Z4 will be available through Verizon starting June 13 in gray and white color schemes priced at $499.99 although for a limited time, Verizon subscribers can nab the phone for $240 ($10 per month for 24 months) with a new activation and pick up a 5G Moto mod for an additional $199.99.
Tuesday, 14 May 2019
upcoming
09:51
Android Q Beta is out with the scooped storage feature
Google has launched the second beta of Android Q.
Android Q |
Google has launched the second beta of Android Q. This version brings multitasking bubbles, foldable emulator, zoomable microphones, and more exciting features. User privacy has been the focus of Android Q so far.
The first beta already brought features like blocking permissions to background apps, clipboard managers are killed and even runtime permissions for older apps are changing. Android Q beta 2 brings major changes to how apps access local files.
The first beta already brought features like blocking permissions to background apps, clipboard managers are killed and even runtime permissions for older apps are changing. Android Q beta 2 brings major changes to how apps access local files.
Scooped Storage
Android creates isolated storage sandboxes for each app using scooped storage. The feature no longer requires apps to access special permission to write their own files. Other apps can directly access the data from another app's sandbox. This makes it safer and easier for apps to access files of other apps on internal and external storage.
There are several permission changes with Scooped Storage as well. READ_MEDIA_AUDIO now grants permission to the Music folder. READ_MEDIA_VIDEO will give access to the videos folder. READ_MEDIA_IMAGES gives access to the Photos folder.
Android Q has changed the naming structure for all external storage devices. Earlier all the external storage devices like flash drives, SD cards were listed under the single external volume.
Best practice that developers should follow for scooped storage:
• Storing shared media files: Developers working on apps that handle files that users share with other apps (like photos), need to use MediaStore API. There are specific collections for common media files. For other file types, you can store these items in new Downloads collection.
• Storing app-internal files: If your app doesn't have files that are to be shared with other apps, you need to store them in your package specific directories. This will keep files organised and limit file clutter. Developers are advised to call Context.getExternalFilesDir()
• Working with permissions: For MediaStore, permissions are not necessary for apps that only access their own files. Your app will need to request permission from the user to access media that your app previously contributed.
• Working with native code or libraries: The recommended pattern is to start media file discovery and pass the file's associated file descriptor in the native code.
• Working with many files: It is recommended to use Content.Provider.applyBatch() if your application needs to perform bulk of file operations in a single transactions.
This version of Android includes 'compatibility mode' that disables these new restrictions. This mode is available only for apps installed before a device updated to Android Q. If the app is built for Android 9 Pie or older.