Using Android 15 new ApplicationStartInfo Android 11 introduced ApplicationExitInfo, from which you can get historical reasons why the app was turned off / killed. Android 15 implemented new ApplicationStartInfo can be used to analyze the causes of why and how the app was launched. With both kinds of data, you can track how the users […]
Posted by Donovan McMurray – Developer Relations Engineer CameraX, Android’s Jetpack camera library, is getting an exciting update to its Dual Concurrent Camera feature, making it even easier to integrate this feature into your app. This feature allows you to stream from 2 different cameras at the same time. The original version of Dual Concurrent […]
Posted by Eiji Kitamura – Developer Advocate Chrome on Android will soon allow third-party autofill services (like password managers) to natively autofill forms on websites. Developers of these services need to tell their users to toggle a setting in Chrome to continue using their service with Chrome. Background Google is the default autofill service on […]
In Android development, coroutines are commonly launched from ViewModel classes using viewModelScope. The typical usage looks like this: viewModelScope.launch {// … implementation} In Android development, coroutines are commonly launched from ViewModel classes using viewModelScope. The typical usage looks like this: viewModelScope.launch {// … implementation} By default, if a dispatcher is not specified, any coroutine launched […]
submitted by /u/davidkonal [comments] Source link
Posted by Rebecca Franks – Developer Relations Engineer This blog post is part of our series: Adaptive Spotlight Week where we provide resources—blog posts, videos, sample code, and more—all designed to help you adapt your apps to phones, foldables, tablets, ChromeOS and even cars. You can read more in the overview of the Adaptive Spotlight […]
Posted by Robbie McLachlan, Developer Marketing In our latest film for #WeArePlay, which celebrates the people behind apps and games, we meet Hyojeong – the visionary behind the app NomadHer. She’s aiming to reshape how women explore the world by building a global community: sharing travel tips, prioritizing safety, and connecting with one another to […]
Adaptive | Spotlight Week Source link
Posted by Alex Vanyo – Developer Relations Engineer Adaptive Spotlight Week With Android powering a diverse range of devices, users expect a seamless and optimized experience across their foldables, tablets, ChromeOS, and even cars. To meet these expectations, developers need to build their apps with multiple screen sizes and form factors in mind. Changing how […]
12 min read · Sep 22, 2024 Jetpack Compose’s animation API is both powerful and enjoyable to work with. And when combined with the graphicsLayer() and drawing modifiers, it really open up possibilities for creating some really cool animations. In this article, we’ll dive into exactly that by exploring how to create the following loading […]