├── BUILD_DFE.sh ├── MAGISK ├── Magisk-Delta-v26.4.apk ├── Magisk-Delta-v27.0.apk ├── Magisk-kitsune-v27-R65C33E4F.apk ├── Magisk-v26.4-kitsune-2.apk ├── Magisk-v26.4.apk └── Magisk-v27.0.zip ├── META-INF ├── com │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script └── tools │ ├── binary │ ├── arm64-v8a │ │ ├── avbctl │ │ ├── bash │ │ ├── bootctl │ │ ├── busybox │ │ ├── e2fsck │ │ ├── lptools_new │ │ ├── magisk │ │ ├── magiskboot │ │ ├── make_ext4fs │ │ ├── resize2fs │ │ ├── snapshotctl │ │ ├── sqlite3 │ │ ├── toolbox │ │ ├── toybox │ │ └── tune2fs │ ├── armeabi-v7a │ │ ├── avbctl │ │ ├── bash │ │ ├── bootctl │ │ ├── busybox │ │ ├── e2fsck │ │ ├── lptools_new │ │ ├── magisk │ │ ├── magiskboot │ │ ├── make_ext4fs │ │ ├── resize2fs │ │ ├── snapshotctl │ │ ├── sqlite3 │ │ ├── toolbox │ │ ├── toybox │ │ └── tune2fs │ ├── x86 │ │ ├── avbctl │ │ ├── bash │ │ ├── bootctl │ │ ├── busybox │ │ ├── e2fsck │ │ ├── lptools_new │ │ ├── magisk │ │ ├── magiskboot │ │ ├── make_ext4fs │ │ ├── resize2fs │ │ ├── snapshotctl │ │ ├── sqlite3 │ │ ├── toolbox │ │ ├── toybox │ │ └── tune2fs │ └── x86_64 │ │ ├── avbctl │ │ ├── bash │ │ ├── bootctl │ │ ├── busybox │ │ ├── e2fsck │ │ ├── lptools_new │ │ ├── magisk │ │ ├── magiskboot │ │ ├── make_ext4fs │ │ ├── resize2fs │ │ ├── snapshotctl │ │ ├── sqlite3 │ │ ├── toolbox │ │ ├── toybox │ │ └── tune2fs │ ├── denylist.txt │ ├── include │ ├── basic_function.sh │ └── get_real_path.sh │ ├── init.sh │ ├── install.sh │ ├── languages │ ├── en │ │ ├── NEO.config │ │ └── en.sh │ ├── hi │ │ ├── NEO.config │ │ └── hi.sh │ ├── id │ │ ├── NEO.config │ │ └── id.sh │ ├── ru │ │ ├── NEO.config │ │ └── ru.sh │ └── zh │ │ ├── NEO.config │ │ └── zh.sh │ └── magisk.db ├── README.md ├── README_hi.md ├── README_id.md ├── README_ru.md ├── README_zh.md ├── customize.sh ├── fix_rline.sh └── module.prop /BUILD_DFE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/BUILD_DFE.sh -------------------------------------------------------------------------------- /MAGISK/Magisk-Delta-v26.4.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/MAGISK/Magisk-Delta-v26.4.apk -------------------------------------------------------------------------------- /MAGISK/Magisk-Delta-v27.0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/MAGISK/Magisk-Delta-v27.0.apk -------------------------------------------------------------------------------- /MAGISK/Magisk-kitsune-v27-R65C33E4F.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/MAGISK/Magisk-kitsune-v27-R65C33E4F.apk -------------------------------------------------------------------------------- /MAGISK/Magisk-v26.4-kitsune-2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/MAGISK/Magisk-v26.4-kitsune-2.apk -------------------------------------------------------------------------------- /MAGISK/Magisk-v26.4.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/MAGISK/Magisk-v26.4.apk -------------------------------------------------------------------------------- /MAGISK/Magisk-v27.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/MAGISK/Magisk-v27.0.zip -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/avbctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/avbctl -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/bash -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/bootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/bootctl -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/busybox -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/e2fsck -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/lptools_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/lptools_new -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/magisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/magisk -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/magiskboot -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/make_ext4fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/make_ext4fs -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/resize2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/snapshotctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/snapshotctl -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/sqlite3 -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/toolbox -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/toybox -------------------------------------------------------------------------------- /META-INF/tools/binary/arm64-v8a/tune2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/arm64-v8a/tune2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/avbctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/avbctl -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/bash -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/bootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/bootctl -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/busybox -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/e2fsck -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/lptools_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/lptools_new -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/magisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/magisk -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/magiskboot -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/make_ext4fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/make_ext4fs -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/resize2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/snapshotctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/snapshotctl -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/sqlite3 -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/toolbox -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/toybox -------------------------------------------------------------------------------- /META-INF/tools/binary/armeabi-v7a/tune2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/armeabi-v7a/tune2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/avbctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/avbctl -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/bash -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/bootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/bootctl -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/busybox -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/e2fsck -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/lptools_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/lptools_new -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/magisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/magisk -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/magiskboot -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/make_ext4fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/make_ext4fs -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/resize2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/snapshotctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/snapshotctl -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/sqlite3 -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/toolbox -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/toybox -------------------------------------------------------------------------------- /META-INF/tools/binary/x86/tune2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86/tune2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/avbctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/avbctl -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/bash -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/bootctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/bootctl -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/busybox -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/e2fsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/e2fsck -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/lptools_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/lptools_new -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/magisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/magisk -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/magiskboot -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/make_ext4fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/make_ext4fs -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/resize2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/resize2fs -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/snapshotctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/snapshotctl -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/sqlite3 -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/toolbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/toolbox -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/toybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/toybox -------------------------------------------------------------------------------- /META-INF/tools/binary/x86_64/tune2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/binary/x86_64/tune2fs -------------------------------------------------------------------------------- /META-INF/tools/denylist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/denylist.txt -------------------------------------------------------------------------------- /META-INF/tools/include/basic_function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/include/basic_function.sh -------------------------------------------------------------------------------- /META-INF/tools/include/get_real_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/include/get_real_path.sh -------------------------------------------------------------------------------- /META-INF/tools/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/init.sh -------------------------------------------------------------------------------- /META-INF/tools/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/install.sh -------------------------------------------------------------------------------- /META-INF/tools/languages/en/NEO.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/en/NEO.config -------------------------------------------------------------------------------- /META-INF/tools/languages/en/en.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/en/en.sh -------------------------------------------------------------------------------- /META-INF/tools/languages/hi/NEO.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/hi/NEO.config -------------------------------------------------------------------------------- /META-INF/tools/languages/hi/hi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/hi/hi.sh -------------------------------------------------------------------------------- /META-INF/tools/languages/id/NEO.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/id/NEO.config -------------------------------------------------------------------------------- /META-INF/tools/languages/id/id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/id/id.sh -------------------------------------------------------------------------------- /META-INF/tools/languages/ru/NEO.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/ru/NEO.config -------------------------------------------------------------------------------- /META-INF/tools/languages/ru/ru.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/ru/ru.sh -------------------------------------------------------------------------------- /META-INF/tools/languages/zh/NEO.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/zh/NEO.config -------------------------------------------------------------------------------- /META-INF/tools/languages/zh/zh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/languages/zh/zh.sh -------------------------------------------------------------------------------- /META-INF/tools/magisk.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/META-INF/tools/magisk.db -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/README.md -------------------------------------------------------------------------------- /README_hi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/README_hi.md -------------------------------------------------------------------------------- /README_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/README_id.md -------------------------------------------------------------------------------- /README_ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/README_ru.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/README_zh.md -------------------------------------------------------------------------------- /customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/customize.sh -------------------------------------------------------------------------------- /fix_rline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/fix_rline.sh -------------------------------------------------------------------------------- /module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegarchat/dfe-neo-v2/HEAD/module.prop --------------------------------------------------------------------------------