Developer Notes By the Split Screen Launcher team May 2026 ~8 min read

Split Screen Launcher: One of the few split-screen apps still working on Android 15 and 16

Pixel and stock-Android phones lack Samsung's "App Pair" feature. In this post, we walk through how Split Screen Launcher fills that gap, why most alternatives broke on recent Android releases, and the design decisions we made along the way.

Split Screen Launcher main screen showing saved app pairs
Split Screen Launcher on Pixel 9 Pro (Android 16). Saved pairs are managed inside the app — tapping any row launches both apps in split view at once.
Category: Productivity tools Tested on: Pixel 9 Pro (Android 16), Pixel 7a (Android 15)
TL;DR
Contents
  1. Background: why "App Pair" matters on Android
  2. What Split Screen Launcher actually does
  3. The Android 15/16 problem — and why most competitors broke
  4. Permissions and privacy
  5. How it compares to other split-screen apps
  6. Pricing
  7. Who this app is for (and who should skip it)
  8. Summary

1. Background: why "App Pair" matters on Android

Android has supported split-screen multitasking since version 7.0 (Nougat, 2016). What it has never supported at the OS level is saving combinations of two apps and launching them together. Samsung added this to One UI as "App Pair" back in 2017, and users who move from Galaxy to Pixel almost immediately notice it's gone.

The workaround is to install a third-party launcher that automates the two-step process: open app A, open app B into the adjacent window. Google Play lists dozens of these — but the ecosystem is messier than it looks, because each Android release changes how split-screen can be invoked, and most of these apps don't get updated.

Android 15 (2024) finally introduced a native App Pair feature at the OS level — but Google scoped it to large-screen devices only. Pixel Tablet got it; Pixel 9 Pro didn't. As of mid-2026, here's the lay of the land on phones:

So on phones, native App Pair is effectively a Samsung-only feature. Everyone else either uses Android's manual split-screen (open app, long-press recents, drag, repeat) or installs a third-party launcher like this one.

2. What Split Screen Launcher actually does

Split Screen Launcher is a single-purpose utility. You pick two apps, name the pair ("Commute", "Work", "YouTube + X"), and the pair shows up as a row in the app. Tapping it opens both apps side-by-side.

Creating a new app pair
Pair creation: pick any two installed apps and save them as a named pair. The one-time setup is what makes subsequent launches a single tap.
List of saved pairs
All pairs live inside the app itself — no home-screen icons are created. This is a deliberate choice that keeps the launcher unaffected by Pixel/Nova quirks and OS changes.
Two apps running in split screen
Result: two apps side-by-side in split view, launched from a single tap on the pair. Example shown: Gmail + YouTube.

That's really the entire feature set. No built-in browser, no floating widgets, no notification panel integration. The APK is about 2.8 MB — smaller than most app icons — and it doesn't run anything in the background.

Example pairs we used during testing:

One detail worth calling out because it's easy to miss: pair data exports to a backup file. That sounds trivial, but several competing apps in this category store their pairs in app-private storage with no export path — switching phones means rebuilding every pair by hand. We made the backup/restore a first-class feature precisely so a Pixel-to-Pixel migration restores the full set in seconds.

And another design choice worth flagging up front: by default, pairs live inside the app — no home-screen icons are created. The reason is partly to keep things simple (the home screen doesn't get cluttered with pair icons) and partly architectural — the app isn't tied to specific launchers (Pixel, Nova, etc.). As noted in section 3, shortcut-dependent launchers are exactly the kind that tend to break across Android 15 and 16 transitions; staying inside the app makes phone-to-phone migration smoother.

And v1.8.0 (May 2026) added an optional pin-to-home action for Pro users who'd rather launch a pair with a single tap from home. We wanted to keep the original "keep the home screen simple" posture intact while still answering the "I want to launch the split right from a home icon" need. The icon shown on home stacks the two app icons vertically, so the pair stays visually distinct from regular launcher icons.

Who this app is for (and who should skip it)

Before we dive into the technical side, here's a quick fit-check so you can decide whether the rest of this article is worth your time.

Good fit if you…

  • Use the same two apps together regularly (maps + music, email + chat)
  • Are on Pixel or stock Android and miss Samsung's App Pair
  • Prefer apps without ads or tracking SDKs
  • Run Android 12L or newer (no Accessibility permission required)
  • Want something that keeps working across OS version bumps

Skip this if you…

  • Rarely use split-screen in the first place
  • Want a floating widget, gesture launch, or Tasker integration
  • Own a Samsung device — One UI's built-in App Pair is already excellent
  • Are on a heavily customized Android skin (MIUI/HyperOS, OxygenOS, ColorOS, MagicOS, EMUI/HarmonyOS) — those vendors modify the split-screen internals, so behavior on those is best-effort

Still interested? The rest of this article covers the technical background — why Android 15 and 16 broke most of the alternatives, and the design decisions behind our approach.

3. The Android 15/16 problem — and why most competitors broke

This is the interesting part, and the reason most competing apps have stopped working.

Historically, split-screen launchers have relied on a handful of OS-level APIs that Google has gradually tightened or removed. Each new Android release has chipped away at the methods third-party apps use to launch two apps side-by-side. Android 15 and 16 in particular closed off the most common routes. Shell-level workarounds fail in similar ways.

In plain terms: the "tricks" third-party apps used to flip the phone into split mode don't work anymore on Android 15 and 16. Most apps in this category never shipped a fix.

The result is that a majority of split-screen utilities on Google Play — including the most-downloaded one in this category — have drawn reports of inconsistent behavior on recent Pixel devices, particularly on Android 15 / 16. User reviews for those apps include a notable number of such reports dating from late 2025 onward.

Split Screen Launcher reaches split view reliably on Android 15 and 16 via a different path. We're keeping the exact mechanism to ourselves — it took a fair amount of experimentation to find a combination that works across OS versions, and publishing the recipe would effectively be handing it to every broken competitor. What we can say is that our release history reflects active maintenance across the Android 12, 12L, 14, 15, and 16 transitions, and we intend to keep that cadence going.

(Important) Apps that don't split by default: Some apps declare android:resizeableActivity="false" in their manifest — the stock Camera and Google Files are the obvious examples — and instead of forming a pair, they just open on their own in full screen (Samsung's built-in App Pair behaves the same way).

(Workaround) Turning on both Settings → System → Developer options → Force activities to be resizable and Allow non-resizable in multi-window makes those apps work in split-screen too. The in-app Help screen ("How to Use 'May not work' Apps") has the step-by-step.

4. Permissions and privacy

On Android 12L and newer, the app requires no runtime permissions and no Accessibility Service. Everything is done through standard Activity flags.

On Android 9 through 12, the app does need Accessibility Service permission, because that's the only available API. The Play Store listing is explicit that the service is only used to trigger split-screen mode. The permission list shown by Google Play is short enough that you can read the whole thing on one screen — no location, no contacts, no storage, and (notably) no network. That's already unusual for this corner of the Play Store.

In plain terms: on older Android versions there was no official API for triggering split screen, so Accessibility Service was the only workable route. It's a legacy constraint, not something the app uses to read your screen.

For comparison, most free split-screen apps on the Play Store bundle ad SDKs (AdMob, Unity, IronSource), which means they ship with the INTERNET permission and the tracker bundle that comes with it. We chose to monetize via a minimal subscription instead — partly to keep the permission footprint clean, partly because bundling ad SDKs into a 2.8 MB utility would more than triple its size.

5. How we compare to other split-screen apps

Before the comparison itself, it's worth sketching the landscape. "App Pair"-style functionality has been approached from a few angles:

The third-party landscape itself is fragmented. Google Play surfaces dozens of dedicated split-screen utilities, but activity and quality are unevenly distributed.

The single most-downloaded app in this niche has crossed 5 million installs on Google Play — but sits at around 2.4 stars, which is an unusual combination: large reach, persistent dissatisfaction in reviews. Another widely-installed alternative was last updated in mid-2025 and hasn't shipped a fix for the Android 15 split-screen API changes. Several others price aggressively — one premium tier has been reported at $18.99 per week, which has drawn criticism in user communities.

The common patterns across this field: most apps either stopped updating around Android 11–12, ship with intrusive banner or interstitial ads, or require the Accessibility Service permission across all Android versions (we drop that requirement on Android 12L+). That makes the field unusually thin in terms of well-maintained, low-permission options.

A small, actively maintained, ad-free app like this one has an easy path to standing out — but only if users can find it.

6. Pricing

The free tier caps the number of saved pairs so users can try the full workflow before deciding whether it fits their habits. Core functionality — creating pairs, launching them, backup/restore — all works without paying.

The Pro subscription runs around $1 / month depending on region, removes the pair limit, and adds folder organization plus icon color customization. Standard Google Play subscription, cancel anytime.

For context: other paid split-screen utilities in the same category have premium tiers ranging from a one-time fee of a few dollars up to a weekly subscription of $18.99. At $1/month this is roughly an order of magnitude cheaper than the closest paid competitor.

7. Summary — who this is for

Who is this for? Honest take

We don't think this app is for everyone. If you don't already have a fixed two-app habit (maps + music, email + chat, etc.), you probably won't open it much. But if you're on stock Android and you've been missing Galaxy's App Pair since switching to Pixel, we built this for you — and we tried to make it the least-compromised way to get that behavior back. The no-ads posture and the $1/month price point are deliberate choices, and we think they're the right ones for this category.

Pros

  • Actually works on Android 15 and 16
  • No ads on any tier
  • 2.8 MB, no background services
  • No Accessibility permission on Android 12L+
  • No network permission declared at all
  • Pro tier at ~$1/month is 10× cheaper than competitors
  • Backup / restore for device migrations
  • 15 language localizations

Cons

  • There's a visible ~1 second delay between tap and split view appearing. This is mostly an OS-side cost — entering split mode on Android 12L+ involves multiple task transitions that the system sequences internally, so any app in this category sits in the 0.8–1.2 s range. Not a bug, but worth setting expectations
  • No floating widget, no gesture binding, no Tasker integration. Home-screen shortcuts are now optional as of v1.8.0 (Pro), but everything else stays inside the app
  • Pair creation list shows every installed app without categories, which gets tedious once you pass ~60 apps on the device
  • Solo dev, so if you hit an edge case on a non-Pixel ROM, don't expect same-day fixes

Install from Google Play