ylliX - Online Advertising Network

Gaze Link Wins Best Android App in Gemini API Developer Competition

Posted by Thomas Ezan – Sr Developer Relation Engineer (@lethargicpanda) We’re excited to announce Gaze Link as the winner of the Best Android App for our Gemini API Developer Competition! This innovative app demonstrates the potential of the Gemini API in providing a communication system for individuals with Amyotrophic lateral sclerosis (ALS) who develop severe […]

Mastering Scroll in Jetpack Compose — PART 1

Scrolling is a fundamental element of any mobile app, and Jetpack Compose provides powerful tools to create smooth and efficient scrolling experiences. This article dives into the world of scroll in Compose, starting with the foundational concepts and gradually progressing towards more complex scenarios. Compose offers two workhorses for creating scrollable lists: LazyColumn for vertical […]

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