Android Nomad - Issue #15
Topics:
- Passing 10 MB Bitmap using File Descriptors
- Testing Fundamentals for Jetpack Compose
- Semantics for Accessibility in Jetpack Compose
- Google Fonts in Jetpack Compose
- Testing guidance
Passing 10MB Bitmap to another process using File Descriptors in Android — proandroiddev.com
Well, you’ve read the article's title so there will be no secret about the contents. But why use File Descriptors and what is a File Descriptor? First of all, let’s think how we can even pass…
Testing Composable in Jetpack Compose Android - Testing Fundamentals — medium.com In the world of Android applications, Jetpack Compose is the latest practice followed for UI development. While it is declarative, it sometimes gets complicated because whatever you designed is all…
Jetpack Compose Accessibility: Semantics — joebirch.co
When it comes to the applications we build, the end product will encounter many different scenarios and constraints. On Android, we not only have a vast range of devices running the Android OS, each of which could be running one of many versions of Android, but we also have the different
5 steps to Google Fonts in Jetpack Compose — joebirch.co
When displaying text in Android Applications, Fonts are used to describe a typeface's styling, size, and weight. In some cases, developers render text in their applications without overriding the default font being used - which results in the default typeface for applications being a
Android Developers Blog: Write better tests with the new testing guidance — android-developers.googleblog.com As apps increase in functionality and complexity, manually testing them to verify behavior becomes tedious, expensive, or impossible. Modern apps, even simple ones, require you to verify an ever-growing list of test points such as UI flows, localization, or database migrations. Having a QA team whose job is to manually verify that the app works is an option, but fixing bugs at that stage is expensive. The sooner you fix a problem in the development process the better.