Two numbers, from the same survey, tell you almost everything you need to know about building software for Ethiopia. 86% of men and 65% of women own a mobile phone. And 15% of the population owns a smartphone1. The country is not offline. It is on a different device than your design assumes.
We wrote earlier about what the market numbers actually say. This piece is the engineering consequence of one of them — the brief we hand our own teams before they write a line of code.
Own a smartphone
15%
Men 18%, women 6%
Covered, not connected
76%
Inside coverage, not using mobile internet
Entry handset cost
24%
Of monthly income, low- and middle-income average
Design width
360px
The most common CSS viewport width
The gap is the handset, not the network
97.6% of Ethiopia's mobile connections run on 3G, 4G, or 5G9, and 76% of the population lives inside mobile broadband coverage without using mobile internet6. Nothing about that is a network problem. It is a device problem, a cost problem, and a skills problem, in that order.
Phones yes, smartphones no
Share of adults owning each device, from GSMA's 2024 consumer survey. Ethiopia records the widest smartphone gender gap of every country surveyed.
Source: GSMA, The Mobile Gender Gap Report 2025
View data tableHide data table
| Group | % of adults |
|---|---|
| Men — own any mobile phone | 86% |
| Women — own any mobile phone | 65% |
| Men — own a smartphone | 18% |
| Women — own a smartphone | 6% |
The distance between the top two bars and the bottom two is your addressable surface. A product that only exists as an app is reaching the bottom bars. A product that also works over USSD, SMS, and an agent counter is reaching the top ones — and the top ones include most women in the country, which is not a footnote if your product touches households, farms, or clinics.
The price of closing that gap is known and brutal: an entry-level internet-enabled handset costs about 24% of monthly income across low- and middle-income countries, and up to 99% of monthly income for the poorest fifth in Sub-Saharan Africa7. ethio telecom is attacking this directly with bank-backed device financing through telebirr, aiming at up to two million handsets a year10. Assume the smartphone share rises. Do not assume it rises before your launch.
Who actually reaches your website
Here the data gets counter-intuitive. Of Ethiopian web traffic measured in July 2026, desktop accounted for 60.95%, mobile 38.07%, and tablets 0.97%5. In a country with 15% smartphone ownership, that is exactly what you would expect: web browsing concentrates where the shared machines are — offices, campuses, internet cafés.
Android versions among devices that browse
Share of Ethiopian mobile and tablet page views by Android version, July 2026. The handsets that do reach the web are newer than the market's reputation suggests.
These six versions carry 83% of mobile page views; the remaining 17% is spread across older releases. Android 11 is a defensible baseline — the constraint is bandwidth and memory, not API level.
Source: StatCounter, Android version market share — Ethiopia
View data tableHide data table
| Android version | % of page views |
|---|---|
| 11 | 10.3% |
| 12 | 11.8% |
| 13 | 13.5% |
| 14 | 20.5% |
| 15 | 12.9% |
| 16 | 14.0% |
That chart kills a common assumption. Teams building for this market often target ancient Android versions and ship a stripped, ugly product to compensate. The devices reaching the web are running Android 11 through 16. Modern CSS is fine. What is not fine is a 2MB JavaScript bundle on a Tecno with 2GB of RAM and a metered bundle.
The six screen sizes that matter
Most common mobile viewport resolutions in Ethiopia by share of page views, July 2026. Every one of them is between 360 and 412 CSS pixels wide.
Design at 360px and check at 412px. No single device is worth optimising for; the whole distribution fits in a 52px band.
Source: StatCounter, mobile screen resolution stats — Ethiopia
View data tableHide data table
| Resolution | % of mobile page views |
|---|---|
| 360×800 | 10.1% |
| 385×854 | 9.5% |
| 360×806 | 9.1% |
| 384×832 | 8.5% |
| 384×857 | 6.4% |
| 412×915 | 6.3% |
What we actually change in the build
1. USSD and SMS are product surfaces, not fallbacks
If a task matters to someone without a smartphone, it needs a path that works on a feature phone. That means designing a menu state machine, not shrinking a UI: sessions expire in about three minutes, each screen holds roughly 180 characters, and there is no back button unless you build one. Menus stay under three levels deep, every screen ends in an action, and anything long — a receipt, a confirmation — goes out as an SMS afterwards.
The same logic covers the agent counter. telebirr alone runs a network of over 410,700 agents, and for a large share of users an agent is the interface. Build the agent-assisted version of your flow deliberately rather than letting it happen through screen-sharing and shouted passwords.
2. Budget bytes like money, because they are money
- Set a hard payload budget — we target under 150KB for the first meaningful screen and fail the build when it regresses.
- Test on a throttled profile, not on office wifi — median fixed download in Ethiopia is 9.37 Mbps and falling slightly year on year, and mobile is slower and more variable.9
- No autoplay, no speculative prefetch, no background polling — Safaricom Ethiopia raised bundle prices by an average of about 44% in December 2025, with individual bundles up 82%.8 Every wasted request is charged to the user.
- Ship images at the size they render — a 360px column never needs a 1600px asset.
On a metered bundle, an unnecessary request is not a performance bug. It is a charge on someone's account.
3. Assume the connection drops and the device is shared
Writes queue locally and retry with an idempotency key, so a lost signal mid-submit never creates a duplicate record or a lost one. Long forms save per step. And because handsets get shared across a household or a shift, sessions stay short, sign-out is always one tap away, and no personal data is cached where the next user can reach it. Biometric unlock is a bonus, never a dependency.
4. Amharic first, and properly
- Type in Ethiopic, search in Latin — many people type Amharic phonetically, so search has to match transliteration as well as fidel.
- Do not lean on bold for hierarchy — Ethiopic faces often ship a single weight, so size, spacing, and colour have to carry the structure.
- Leave room for expansion — Amharic strings routinely run longer than their English source; fixed-width buttons break.
- Support the Ethiopian calendar — thirteen months, a seven-to-eight year offset, and a fiscal year ending 7 July. A date picker that only speaks Gregorian will be entered wrong.
- Model names and IDs correctly — given name plus father's name plus grandfather's name, not first/middle/last; phone numbers normalise to +251; Fayda national ID has its own format and check.
5. Design for the one who was excluded
Ethiopia records the widest gender gaps GSMA measured: 36% in mobile internet adoption, 34% in smartphone ownership, 22% in phone ownership overall2. If your product only works well on a personal smartphone with a data bundle, it will systematically serve men better than women. That is not an abstract equity point — it is a product that fails for a large share of the workforce in agriculture, retail, and health.
The one-page brief
- Every critical task has a non-smartphone path — USSD, SMS, or an agent-assisted flow.
- First screen under 150KB, measured on a throttled connection in CI.
- Layout designed at 360px, verified at 412px, tap targets at least 44px.
- Android 11 baseline; assume 2GB of RAM, not a flagship.
- Offline queue with idempotent writes; per-step saves on long forms.
- Short sessions, one-tap sign-out, no personal data left cached on a shared device.
- Amharic first: transliteration search, expansion-safe layout, Ethiopian calendar, correct name model.
- No autoplay, no speculative prefetch, no background polling on metered connections.
This is the brief we work from. If you are building for this market and want it applied to your product, get in touch.
Sources
- 1.GSMA, The Mobile Gender Gap Report 2025 — May 2025, 2024 survey data
- 2.Birr Metrics, Ethiopia Narrows Mobile Gender Gap to 24%, but Smartphone Access for Women Remains Just 6% — 2025
- 3.StatCounter Global Stats, Android version market share — Ethiopia — July 2026
- 4.StatCounter Global Stats, Mobile screen resolution stats — Ethiopia — July 2026
- 5.StatCounter Global Stats, Platform market share — Ethiopia — July 2026
- 6.GSMA, Digital Economy Ethiopia Report: opportunities, policy reforms and the role of mobile — October 2024
- 7.GSMA, GSMA calls for renewed focus on closing the Usage Gap as more than 3 billion people remain offline — 2025
- 8.IT News Africa, Inside Safaricom Ethiopia's Data Price Hike and Its Impact on Affordability — December 2025
- 9.DataReportal, Digital 2026: Ethiopia — data to October 2025
- 10.GSMA, Addressing digital inclusion and the usage gap — 2025
