Merge SD Card with Internal Storage on Android

Last Updated :

To merge your SD card with internal storage on Android, go to Settings → Storage → SD card → Format as internal storage. This erases, encrypts, and integrates the card as part of your device's internal storage pool. If your manufacturer has hidden this option, you can force it using ADB commands. The merge adds the card's full capacity to your available internal storage, but the card becomes unreadable on any other device and performance depends on the card's speed.

Understanding the Merge Process

When you "merge" an SD card with internal storage, you are performing what Android calls "adoptable storage." The system:

  1. Erases the SD card completely — all existing data is permanently deleted
  2. Creates an ext4 filesystem — replacing the standard FAT32/exFAT format
  3. Encrypts the partition — using a key tied to your specific device
  4. Registers the card as internal — Android adds its capacity to the internal storage pool
  5. Enables app installation — apps can now be stored on the card transparently

After merging, there is no separate "SD card" in your storage settings or file manager. The additional capacity appears as part of "Internal storage" — Android handles file placement between the two physical storage areas automatically.

Method 1: Through Settings (Easy)

Supported Devices

Some manufacturers support adoptable storage through the Settings UI:

  • Stock Android (Pixel, Android One): Usually supported
  • Motorola: Usually supported
  • Nokia: Usually supported
  • Sony: Supported on most models
  • HTC: Supported
  • Samsung: Disabled by manufacturer (requires ADB)
  • Huawei/Honor: Disabled by manufacturer (requires ADB)
  • Xiaomi/POCO: Disabled by manufacturer (requires ADB)
  • OnePlus/Oppo: Disabled by manufacturer (requires ADB)

Steps

  1. Back up your SD card — copy all files to computer or cloud
  2. Insert the SD card into your phone
  3. When the "New SD card detected" notification appears, tap Set up
  4. Alternatively: Settings → Storage → SD card → FormatFormat as internal storage
  5. Read the warning about data loss → tap Format or Erase & Format
  6. Wait for the formatting and encryption process (1-5 minutes depending on card size)
  7. When prompted "Move data now?":
    • Move now: Migrates existing photos, files, and eligible apps to the expanded storage
    • Move later: Keeps current data on the original internal storage

Method 2: ADB Commands (For Any Device)

If your manufacturer has hidden the adoptable storage option, you can force it using ADB (Android Debug Bridge):

Prerequisites

  1. Install ADB on your computer:
    • Windows: Download Platform Tools
    • macOS: brew install android-platform-tools
    • Linux: sudo apt install adb
  2. Enable Developer Options: Settings → About → tap Build number 7 times
  3. Enable USB Debugging: Settings → Developer Options → USB debugging
  4. Connect phone to computer with a data-capable USB cable
  5. Accept the RSA key prompt on your phone

Get the AnExplorer File Manager

Manage, transfer, and access your files on any device.

Get the App

Full Merge (Entire Card as Internal)

adb shell sm set-force-adoptable true
adb shell sm list-disks

This returns something like disk:179,0 — note your disk ID. Then:

adb shell sm partition disk:179,0 private

The entire SD card is now formatted as internal storage. Your phone will show expanded internal storage capacity.

This creates two partitions — one merged as internal, one remaining portable:

adb shell sm set-force-adoptable true
adb shell sm list-disks
adb shell sm partition disk:179,0 mixed 50

The number (50) is the percentage kept as portable storage. So mixed 50 means:

  • 50% of the card → merged as internal storage (encrypted, fast-access for apps)
  • 50% of the card → remains portable (readable by computers, cameras, other devices)

Other examples:

  • mixed 25 = 75% internal + 25% portable
  • mixed 75 = 25% internal + 75% portable

Why Mixed Partition Is Often Better

AspectFull MergeMixed Partition
App storage expansionMaximumModerate
Portable media storageNoneYes
Card readable by PCNoPartially (portable part)
Best forVery low internal storage (16 GB)Most users (32-64 GB internal)

Mixed partitioning gives you the best of both worlds — expanded app storage AND a portable partition for moving files between devices.

After Merging: What Changes

In Settings

  • Storage shows one combined capacity (e.g., "Internal storage: 96 GB" instead of "32 GB internal + 64 GB SD card")
  • No separate SD card entry appears
  • The storage breakdown (apps, images, videos, etc.) covers both physical storages combined

In AnExplorer

  • Internal Storage shows the combined capacity
  • No separate SD Card entry in the sidebar
  • Files can exist on either physical storage — AnExplorer shows them unified
  • Storage Analyser reports the total combined space

Get the AnExplorer File Manager

Manage, transfer, and access your files on any device.

Get the App

For Apps

  • Apps can be installed without worrying about which storage they go to
  • Android decides placement automatically
  • Large games with multi-GB assets fit more easily
  • However, app launch times may increase if the app lands on the slower SD card

Performance Considerations

The SD card is always significantly slower than internal storage (eMMC/UFS):

OperationInternal (UFS 3.x)Good SD Card (A2)Budget SD Card
Sequential Read1000-2000 MB/s80-170 MB/s20-40 MB/s
Sequential Write500-1000 MB/s60-90 MB/s10-25 MB/s
Random Read (IOPS)50,000-100,0004,0001,500
Random Write (IOPS)40,000-80,0002,000500

Random I/O performance matters most for app responsiveness. The gap is enormous — even the best SD cards are 10-25x slower than internal storage for random operations. This translates to:

  • Apps stored on the card take 2-5 seconds longer to launch
  • System UI may stutter if core services are on the card
  • Games with frequent asset loading feel sluggish
  • Camera app may lag if saving to the card during burst mode

Minimizing Performance Impact

  1. Use an A2-rated card: Required for acceptable app performance. A1 is minimum; A2 is recommended.
  2. After merging, move performance-critical apps back to internal: Settings → Apps → App → Storage → Change → Internal shared storage
  3. Leave system apps on internal: Do not move system apps or frequently used apps to external
  4. Accept media storage on card: Photos, videos, and music are fine on slower storage (sequential access)

Moving Data After Merge

After merging, you can migrate existing data:

From Settings

Settings → Storage → Internal storage → Migrate data (or "Move data")

This moves:

  • Photos and videos from DCIM/Pictures to the expanded pool
  • Downloads folder contents
  • Some app data (varies by app)
  • Files in standard media directories

Manually with AnExplorer

Since both storages appear as one "Internal Storage," file management is transparent. Just organize your files normally — Android handles physical placement.

Get the AnExplorer File Manager

Manage, transfer, and access your files on any device.

Get the App

Moving Apps

Settings → Apps → App name → Storage → Change → select storage location

Not all apps support moving. System apps and some critical apps are locked to the faster internal storage.

Reverting the Merge

If performance is unacceptable or you need the card for another purpose:

  1. Back up all data: Copy important files to computer, cloud, or NAS via AnExplorer
  2. Move apps back to internal: Settings → Apps → check each app and move to internal storage
  3. Go to Settings → Storage → tap the storage → Format as portable storage (or Eject → Format)
  4. Confirm the format — card is erased and returned to exFAT
  5. The card is now readable by any device again

Warning: If you format as portable without moving apps first, those apps and their data are permanently lost.

Troubleshooting

"Unsupported SD card" or card keeps disconnecting after merge

  • The SD card may be failing. Run a health check on a computer (H2testw on Windows, F3 on Linux)
  • Use a higher quality card — cheap cards have poor controllers that fail under adoptable storage workload
  • Remove and reinsert the card firmly — poor physical contact causes intermittent disconnections
  • Try a different SD card (borrow one to test)

Phone is extremely slow after merging

  • Your SD card is too slow (no A1/A2 rating). Revert the merge and use the card only for portable media storage
  • Move resource-intensive apps back to internal: Settings → Apps → sort by storage location
  • Consider partial merge (mixed partition) — keep apps on internal, use card for media only

"SD card unexpectedly removed" errors

  • Physical connection issue — remove and reinsert the card
  • Card is failing — back up immediately and replace
  • Case/cover pressing against the card slot — check physical fit
  • Card slot issue — try a different SD card to confirm it is the card (not the phone)

Cannot access files after merge

  • Files are encrypted — they are only accessible on the device that performed the merge
  • If you factory reset, the encryption key is lost and card data is unrecoverable
  • This is by design — it prevents someone from reading your data by removing the card

Get the AnExplorer File Manager

Manage, transfer, and access your files on any device.

Get the App

Frequently Asked Questions

Copyright © DWorkS 2011 – 2026 All Rights Reserved.