ylliX - Online Advertising Network

Using Gradle 7 and Java 8

Hello, I am running Android studio 2024.2.1 p 2 on Archlinux, with Java 21 installed system wide. I want to open an old project that is using Java 8 and gradle 7. I have a local installation of Java 8 in `/home/mihamina/Apps/java` and I also have already set `org.gradle.java.home=/home/mihamina/Apps/java/` in `gradle.properties`. This local Java installation […]

Android development

I want to start app development in 2024 so can you guys tell me what should I do and what should I not do…It will be helpful for me and save my lots of time and how to start app development ( android) submitted by /u/ujjwal_22 [comments] Source link

Top 10 Coroutine Mistakes We All Have Made as Android Developers

Understanding and Avoiding Common Pitfalls in Asynchronous Programming with Kotlin Coroutines This image was generated with the assistance of AI As Android developers, Kotlin coroutines have become an indispensable tool in our asynchronous programming toolkit. They simplify concurrent tasks, make code more readable, and help us avoid the callback hell that was prevalent with earlier […]

How to smash a Jetpack Compose feature from Product — including testing! 🧪 🧐

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. 🏆🎉🥇💪 […]

allowClearTextTraffic makes app not compatible in Google Play

Hi everyone. I need to make my app to allow HTTP traffic and self signed certificates because it has to he able to connect to home servers that not always have proper HTTPS certificates. To allow that I added this on the manifest: “` android:usesCleartextTraffic="true" android:targetSandboxVersion="1" android:networkSecurityConfig="@xml/network_security_config" “` And this is the security config: “` […]