Subscribe Sign Up

We use cookies to improve the services we offer you. By continuing to browse this site, you consent to keep them in accordance with our Privacy Policy.

×

Custom Rom Repack | Samsung T113

Reboot system. The first boot takes 10–15 minutes (the repack is rebuilding the Dalvik cache). Do not force restart.


| Risk Level | Risk Description | Mitigation | | :--- | :--- | :--- | | High | Hard Brick | Flashing a T110 (Wi-Fi) ROM onto T113 (3G) can hard brick the device due to radio incompatibility. Always check model number. | | Medium | Bootloop | Incorrect build.prop edits or kernel mismatch during repacking. | Always keep a stock Odin .tar file ready for recovery. | | Low | System Instability | Removing critical system apps. | Research dependencies before debloating. |

Subject: Analysis of Custom ROM Repacking for Samsung Galaxy Tab 3 Lite (SM-T113) Device Codename: vivalto3gvn (common for T113 variants) Status: Legacy Device (Released 2014)


Best for: Modern app compatibility (Chrome, YouTube ReVanced). samsung t113 custom rom repack

Stock Android 5.0 enforces SELinux, which kills background processes aggressively, making multitasking impossible. A repack modifies the sepolicy file to be permissive, allowing apps like Viper4Android and Xposed Framework to run without kernel panics.


In Odin, click BL and select BL_T113_Repack_Unlocked.tar.md5.
Checkboxes: Auto Reboot OFF, F. Reset Time ON.
Click Start. Wait for "PASS" in green.

Stock Samsung firmware includes Knox (enterprise security), S Voice, and 20 Google apps that cannot be disabled. A repack trims the fat. Most repacks reduce the system partition size from 2.8GB to under 800MB. Reboot system

T113’s system partition is usually ext4 with sparse format.

Convert sparse to raw:

simg2img system.img system_raw.img

Mount or extract the raw image:

mkdir system_mount
sudo mount -t ext4 -o loop system_raw.img system_mount

Or use extract.erofs if it’s EROFS (rare for T113).

Repack contents after modifications (e.g., add/remove APKs, edit build.prop, change fonts, etc.):

sudo make_ext4fs -s -l 1300M -L system new_system.img system_mount/

-s = sparse, -l = partition size (check original size via ls -lh system.img), -L = volume label. | Risk Level | Risk Description | Mitigation