Hi all, I’ve created a new tab layout library for Android Views! Unlike other libraries, this one supports adaptive tabs. This means that on larger screens, the tabs expand to fill the screen, while on smaller screens, they become scrollable for better usability. I hope you find this library helpful. If you do, please consider […]
Download directly In this episode, Kaushik explores the evolution of dependency injection (DI) in Android development. Dagger has been the de-facto solution for DI in Android but there might be a new king in DI-town. He also chats with friend of the show and dependency injection expert Ralf Wondratschek for a final gut check. Listen […]
Next, we can see how to configure SonarQube in Android Studio Step 1: In app’s build.gradle, if we add SonarQube Plugin and other details like this allprojects {apply plugin: ‘org.sonarqube’sonar {properties {property “sonar.host.url”, “http://localhost:9000” property “sonar.test.inclusions”, “src/test/**”property ‘sonar.profile’, ‘Android Lint’property “sonar.sourceEncoding”, “UTF-8″property “sonar.projectName”, “SonarTestApp”property “sonar.projectKey”, “SonarTestKey”property “sonar.projectVersion”, 1.0.0property “sonar.login”, “sqp_123123kj123k123j123kj123j1k23k123jk132j”}}} we may get the following […]
Is Asus tuf F15, i5 12500H ,90Whr a good laptop for running Android Studio smoothly ..if not then please suggest me a laptop for it … My budget is Around 65-80K(INR) I want a decent Battery life in my Laptop that would last at least 3 to 5 hrs Apart from it it should have […]
The Team Leaders feature for the NHL app on Google Play To create exceptional Jetpack Compose features, start by aligning them with your product goals and user needs. Design, prototype, and develop features that provide value. For this specific feature, Product aims to deliver interactive widgets and comprehensive player data, enhancing the user experience. 🏆🎉🥇💪 […]
In a few recent projects, I’ve needed to utilise Google Maps within environments utilising Jetpack Compose. In the early days of Compose this felt light a sought-after piece of functionality – even though it is still being built on, it now seems to be in a place where I can confidently use it. In this […]
So I've been kinda force do work with KMP/Compose and wonder – has Android went full compose or material-components (MDC) are still a thing? (having to deal with kotlin-compose combo recently and looking at MDC it looks somewhat nicer…) submitted by /u/woj-tek [comments] Source link
Download directly We’re back from the hiatus with our SemiQuicentennial episode! With the momentous 250 comes some big announcements and a shift in the way we do things. Listen to find out the details! You can find us on a few places: Donn Kaushik: Disclaimer: Links shared might be affiliate links. They help support the […]
Boost Compatibility: When to Use or Skip New Java and Kotlin Versions in Android Development This image was generated with the assistance of AI Ever wondered when you can or cannot use the latest Java and Kotlin versions in Android development? In this article I will try to give you the answer. As Android developers, […]
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 […]