ylliX - Online Advertising Network

SonarQube in Android — Implementation tips and challenges faced

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 […]

Kotlin Coroutines Mastery: Optimize Your Workflow and Concurrency Techniques

Handling Cancellation in Complex Tasks. 👇 On the other hand, while they might seem like the perfect fit for your projects, coroutines are complex, and it’s important to understand how they work before using them. For example, did you know that Kotlin Coroutines may not cancel immediately during heavy computations? Without suspension points, cancellation can […]

Now in Android #111

Android API level updates are becoming more frequent and streamlined. In 2025, there will be a major API release in Q2 and a minor API release in Q4, with the goal of delivering you more polished and innovative APIs faster. The minor release in Q4 will include new APIs, but, like the incremental quarterly releases […]