English

Understanding and Detecting Platform-Specific Violations in Android Auto Apps

Software Engineering 2026-01-28 v3 Programming Languages

Abstract

Despite over 3.5 million Android apps and 200+ million Android Auto-compatible vehicles, only a few hundred apps support Android Auto due to platform-specific compliance requirements. Android Auto mandates service-based architectures in which the vehicle system invokes app callbacks to render the UI and handle interactions, which is fundamentally different from standard Activity-based Android development. Through an empirical study analysis of 98 issues across 14 Android Auto app repositories, we identified three major compliance failure categories: media playback errors, UI rendering issues, and voice command integration failures in line with mandatory requirements for integrating Android Auto support. We introduce AutoComply, a static analysis framework capable of detecting these compliance violations through the specialized analysis of platform-specific requirements. AutoComply constructs a Car-Control Flow Graph (CCFG) extending traditional control flow analysis to model the service-based architecture of Android Auto apps. Evaluating AutoComply on 31 large-scale open-source apps, it detected 27 violations (13X more than Android Lint), while no false positives were observed, achieving 2X faster analysis. Developers have acknowledged 14 of these violations with 8 fixes already implemented, validating AutoComply's practical effectiveness.

Keywords

Cite

@article{arxiv.2503.04003,
  title  = {Understanding and Detecting Platform-Specific Violations in Android Auto Apps},
  author = {Moshood Fakorede and Umar Farooq},
  journal= {arXiv preprint arXiv:2503.04003},
  year   = {2026}
}

Comments

11 pages, 2 tables, 4 figures

R2 v1 2026-06-28T22:08:33.578Z