├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── README.md ├── changelog.md ├── module.prop ├── system.prop ├── system └── system_ext │ └── priv-app │ └── Esim │ └── MIUIEsimLPA.apk └── update.json /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- 1 | ################# 2 | # Initialization 3 | ################# 4 | 5 | umask 022 6 | 7 | # echo before loading util_functions 8 | ui_print() { echo "$1"; } 9 | 10 | require_new_magisk() { 11 | ui_print "*******************************" 12 | ui_print " Please install Magisk v20.4+! " 13 | ui_print "*******************************" 14 | exit 1 15 | } 16 | 17 | ######################### 18 | # Load util_functions.sh 19 | ######################### 20 | 21 | OUTFD=$2 22 | ZIPFILE=$3 23 | 24 | [ -f /data/adb/magisk/util_functions.sh ] || require_new_magisk 25 | . /data/adb/magisk/util_functions.sh 26 | [ $MAGISK_VER_CODE -lt 20400 ] && require_new_magisk 27 | 28 | nohup am start -a android.intent.action.VIEW -d https://t.me/+9iW4KfPrc_owZTMx >/dev/null 2>&1 & 29 | 30 | install_module 31 | exit 0 32 | -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > [!WARNING] 2 | > Only Xiaomi devices with EID number. The EID number can be registered on Chinese devices, but it is a difficult process (requires expertise). 3 | 4 | > [!TIP] 5 | > 5ber estk.me esim.me etc. services can be used without EID (local support). 6 | 7 | # Esim Enable 8 | Way to activate esim in china rom (Xiaomi). 9 | Please use stable magisk for best compatibility. 10 | 11 | # Requirements 12 | * Android 15+ 13 | * Official HyperOS China Rom 14 | 15 | # Esim App Updates 16 | [ApkMirror](https://www.apkmirror.com/apk/xiaomi-inc/lpa/) 17 | 18 | # System App Update 19 | Please submit a pull request if the LPA Esim app is updated. 20 | 21 | # Telegram 22 | https://t.me/cleverestech 23 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- 1 | 2 | ## Changelog 3 | 4 | - Changelog and other stuff Github. 5 | 6 | Github: 7 | github.com/tryigit/EsimEnable 8 | -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- 1 | id=esim 2 | name=CN Esim Enable 3 | version=v1.0.0 4 | versionCode=1000 5 | author=tryigitx 6 | description=Way to activate esim in chinese rom (Xiaomi). 7 | -------------------------------------------------------------------------------- /system.prop: -------------------------------------------------------------------------------- 1 | # @chinacloudgroup found 2 | ro.vendor.miui.support_esim=true 3 | -------------------------------------------------------------------------------- /system/system_ext/priv-app/Esim/MIUIEsimLPA.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryigit/EsimEnable/26b9597cfc63d291a97df46211c3394e2f209c39/system/system_ext/priv-app/Esim/MIUIEsimLPA.apk -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "v1.4.2", 3 | "versionCode": 1042, 4 | "zipUrl": "https://github.com/tryigit/EsimEnable/releases/download/V1.4.2/V1.4.2-esim_enable.zip", 5 | "changelog": "https://raw.githubusercontent.com/tryigit/EsimEnable/refs/heads/master/changelog.md" 6 | } 7 | --------------------------------------------------------------------------------