Android Integration in Analytics Infrastructure
Article Summary
Alexander Dadukin and Dhriti Chawla reveal what it's like being the only 2 Android engineers supporting analytics infrastructure for all of Yelp. Spoiler: they can't see or touch what they build.
Yelp's Analytics Infra team maintains the experimentation and logging SDKs that every feature team depends on. But building infrastructure that other developers use comes with unique constraints: no UI to validate work, core dependencies that can't rely on anything else, and code that launches before anything else in the app.
Key Takeaways
- Just 2 Android engineers support experimentation and logging SDKs for all Yelp teams
- SDK launches first on app startup: crashes affect 100% of devices instantly
- Can't depend on client code due to circular dependencies with core modules
- No UI means validation requires slow rollouts and implicit data analysis
- Built modern stack from scratch: Kotlin, Koin, and Retrofit despite constraints
Critical Insight
Infrastructure SDKs require extreme caution and independence because they're core dependencies that launch before anything else, making every release a high-stakes deployment.