Android

Why some phones can't use both cameras at once

By , developer of InspectCam · Published · Last updated

Running the front and rear cameras at the same time is a hardware capability that your phone either declares or doesn't. Android asks the camera hardware which pairs can run together, and on plenty of phones the answer is none. Where that happens no app can add it, and the ones that offer it simply hide the button.

You saw a phone showing both cameras on screen at once. You go looking for it on yours and there is nothing to find. No setting, no toggle, no mention of it in the manual.

The instinct is that you are missing a menu somewhere. You are not. On a lot of phones the capability genuinely is not there, and the reason has nothing to do with which version of Android you are running.

The phone gets asked, and answers

Since Android 11 there has been a single official way for an app to find out whether two cameras can run at the same time. The app asks the system camera service, and the camera service asks the hardware layer underneath it, which returns a list of camera pairs that are allowed to stream together.

On a phone with no such pairs, that list comes back empty. There is no error, no permission to grant, and nothing to enable. The app asks, gets nothing, and now has a choice: hide the feature, or show a button that cannot work.

The app asks Android which cameras may run together getConcurrentCameraIds() Empty list No app can offer it. The control is simply absent. A pair comes back Both stream at once, and capture stays with one.
The decision happens below the app, in the camera service. Every app on the phone gets the same answer.

Why the hardware says no

A camera sensor does not produce a picture on its own. It produces a torrent of raw data that has to be corrected, de-noised, colour-mapped and scaled by a dedicated piece of silicon, the image signal processor. That processor has a fixed budget, and running two sensors through it at once costs roughly twice as much of everything: processing throughput, memory bandwidth, power draw and heat.

On phones where the budget does not stretch, the manufacturer's camera layer declares no concurrent pairs at all. It is a considered decision rather than an oversight. A phone that let you do it and then overheated, dropped frames or drained the battery in twenty minutes would be a worse phone than one that never offered it.

This is also why phones that do support it come with strings attached. Resolutions are usually capped below what either camera can manage alone, and the combinations offered are specific pairs rather than any camera with any other.

It isn't an Android version thing

This is the part that misleads people, so it is worth being blunt about. Updating your phone will not add this, and neither will a custom ROM.

Three phones, tested here:

Concurrent camera support, tested on device
PhoneAndroidBoth cameras at once
Pixel 6a16Supported
Galaxy S2115Supported
Pixel 4a 5G13Not supported

The Pixel 4a 5G runs a version of Android that has had the concurrent camera API for years. It still has no concurrent pairs to offer, because the silicon underneath was never built to feed two sensors at once. Meanwhile a Galaxy S21 on an older release than the 6a manages it comfortably.

There is no rule here that you can apply to a spec sheet. Not the Android version, not the year, not the number of lenses on the back. It is a property of the specific camera hardware and the layer the manufacturer wrote for it.

Two views is not two recordings

Worth separating, because the marketing around this is loose and the disappointment is expensive.

Showing two live previews is the easy version. Recording two video streams to two files, or compositing them into one, is a significantly harder thing that concurrent mode does not automatically grant. When two cameras are streaming, the system restricts what each one is allowed to do, and full-rate capture from both at the same time is frequently not on the menu even where the previews are.

So an app offering "both cameras" may mean two live views with recording from one of them, or genuine dual recording. Those are very different products and the phrase does not distinguish them. Check before you rely on it for anything that matters.

The front camera has no light

No phone has an LED next to the selfie camera. The trick of turning the screen white to use it as a lamp needs the whole panel, which is unavailable when the panel is showing a full-screen preview from the other camera.

So in a dark space the front view is a black rectangle. Two cameras helps you watch your own approach, or narrate what you are doing. It does not light anything up.

How to find out about your phone

There is no setting that reports this, and no reliable spec-sheet entry. The practical test is to open something that uses the capability and see whether the control exists.

If the control is missing everywhere, that is your answer, and no amount of searching through settings will change it.

Questions people ask

Why can't my phone use both cameras at once?

Because its camera hardware declares no pairs that are allowed to stream together. Android asks the hardware layer for that list, and on many phones it comes back empty. The image signal processor has a fixed throughput budget and running two sensors through it costs roughly double in processing, memory bandwidth, power and heat.

Will an Android update add it?

No. The capability lives in the camera hardware and the manufacturer's layer above it, not in the Android version. A phone on Android 13 can lack it while a phone on an older release than yours has it, which is exactly what testing three handsets showed.

Can an app add support for it?

No, and this is worth understanding before blaming an app. The restriction is enforced by the system camera service, below where any app runs. Where the phone declares no concurrent pairs, no app can produce them. That applies to every app on the phone equally, including the ones from the phone's own manufacturer.

Which phones support both cameras at once?

There is no list worth trusting, because it depends on specific camera hardware rather than on brand or Android version. Of three phones tested here, two supported it and one did not, across three different Android versions. The only dependable answer is to try it on the phone in your hand.

Can I record video from both cameras at the same time?

Usually not, even where both previews work. Concurrent mode restricts what each camera is permitted to do while the other is streaming, and simultaneous full-rate capture from both is often unavailable. Apps that show two views commonly record from only one of them.

Does the front camera get a light too?

No. No phone has a flash next to its front camera, and the workaround of turning the screen white needs the entire display, which is already showing the other camera's preview. In a dark space the front view will be black.


Tested this on a phone that behaved differently? Tell us the model. Concurrent camera support varies more by handset than any published list admits, and results that contradict this page are worth having. The compatibility list follows the same rule: nothing recorded until it has actually been run.