Add analytics to your iOS app iOS.
Most iOS analytics means integrating a heavy SDK, then hand-adding a track call to every screen. smolanalytics does it differently: connect your repo and your coding agent opens a PR that wires it in. The client is one small file (no third-party SDK bloat) with an offline-safe queue, sessions and device context out of the box. Then you ask your numbers in plain English from your editor.
import SmolAnalytics
// once, in your App / AppDelegate
SmolAnalytics.initialize(writeKey: "WRITE_KEY", host: "https://YOUR-INSTANCE")
SmolAnalytics.track("signup", ["plan": "pro"])
SmolAnalytics.screen("Checkout")
SmolAnalytics.identify("user-123") // on loginConnect your repo and the agent wires this up for you. It's open source (github.com/Arjun0606/smolanalytics), and the write key is public (send-only) so it's safe to ship.
how do I add analytics to ios?
Most iOS analytics means integrating a heavy SDK, then hand-adding a track call to every screen. smolanalytics does it differently: connect your repo and your coding agent opens a PR that wires it in. The client is one small file (no third-party SDK bloat) with an offline-safe queue, sessions and device context out of the box. Then you ask your numbers in plain English from your editor.
On mobile there is no autocapture, so the events that matter are explicit: app_open, sign up, purchase, the screens people actually reach. The client tracks app_open and sessions automatically and attaches device, OS version and app version to every event, so your breakdowns just work. You add track() on the two or three moments that matter, or let the agent find them.
The part nobody else has: because your coding agent installs and instruments it, and it lives in your repo alongside your analytics, you can ask "did my last release move retention?" from Cursor or Claude Code and get the real number out of your own instance. Self-host the open-source binary free or run it hosted free up to 1M events/mo, cookieless with no consent banner.
Honest pricing: 14-day full trial, no credit card. Then Pro $19/mo, never metered on seats or sites. Overage is $6 per million, with an emailed receipt, the dashboard never locks, and self-hosting the single Go binary is free forever (MIT).
Add analytics to iOS tonight.
One snippet, or one endpoint. Tomorrow morning the verdict tells you which part of the funnel to fix.