├── .github └── workflows │ └── build-XiaoxinSGSIs.yml ├── Patch ├── Patch1 │ ├── META-INF │ │ └── com │ │ │ └── google │ │ │ └── android │ │ │ ├── update-binary │ │ │ └── updater-script │ └── vendor │ │ ├── app │ │ ├── CneApp │ │ │ └── CneApp.apk │ │ ├── IWlanService │ │ │ └── IWlanService.apk │ │ ├── IconShapeOverlay │ │ │ └── IconShapeOverlay.apk │ │ ├── SoterService │ │ │ └── SoterService.apk │ │ └── TimeService │ │ │ └── TimeService.apk │ │ ├── bin │ │ ├── fidoca │ │ ├── hw │ │ │ ├── android.hardware.drm@1.2-service.widevine │ │ │ ├── hostapd │ │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1-service │ │ │ ├── vendor.xiaomi.hardware.displayfeature@1.0-service │ │ │ ├── vendor.xiaomi.hardware.misys@1.0-service │ │ │ ├── vendor.xiaomi.hardware.misys@2.0-service │ │ │ ├── vendor.xiaomi.hardware.misys@3.0-service │ │ │ └── wpa_supplicant │ │ ├── mlipayd@1.1 │ │ ├── mtd@1.2 │ │ ├── tidad@1.2 │ │ └── vsimd │ │ ├── etc │ │ ├── bluetooth_qti_audio_policy_configuration.xml │ │ ├── hostapd │ │ │ ├── hostapd.accept │ │ │ ├── hostapd.deny │ │ │ └── hostapd_default.conf │ │ ├── init │ │ │ ├── hostapd.android.rc │ │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1-service.rc │ │ │ ├── vendor.xiaomi.hardware.displayfeature@1.0-service.rc │ │ │ ├── vendor.xiaomi.hardware.mfidoca@1.0-service.rc │ │ │ ├── vendor.xiaomi.hardware.misys@1.0-service.rc │ │ │ ├── vendor.xiaomi.hardware.misys@2.0-service.rc │ │ │ ├── vendor.xiaomi.hardware.misys@3.0-service.rc │ │ │ ├── vendor.xiaomi.hardware.mlipay@1.1-service.rc │ │ │ ├── vendor.xiaomi.hardware.mtdservice@1.2-service.rc │ │ │ ├── vendor.xiaomi.hardware.tidaservice@1.2-service.rc │ │ │ └── vendor.xiaomi.hardware.vsimapp@1.0-service.rc │ │ ├── media_profiles.xml │ │ ├── media_profiles_V1_0.xml │ │ ├── media_profiles_vendor.xml │ │ ├── permissions │ │ │ ├── com.fingerprints.extension.xml │ │ │ ├── handheld_core_hardware.xml │ │ │ └── vendor.qti.hardware.factory.xml │ │ └── vintf │ │ │ └── manifest │ │ │ └── manifest_android.hardware.drm@1.2-service.widevine.xml │ │ ├── lib │ │ ├── com.qualcomm.qti.wifidisplayhal@1.0-halimpl.so │ │ ├── com.qualcomm.qti.wifidisplayhal@1.0.so │ │ ├── hw │ │ │ ├── android.hardware.drm@1.0-impl.so │ │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1-impl.so │ │ │ ├── vendor.xiaomi.hardware.displayfeature@1.0-impl.so │ │ │ ├── vendor.xiaomi.hardware.misys@1.0-impl.so │ │ │ ├── vendor.xiaomi.hardware.misys@2.0-impl.so │ │ │ └── vendor.xiaomi.hardware.misys@3.0-impl.so │ │ ├── libQSEEComAPI.so │ │ ├── libcert_parse.wpa_s.so │ │ ├── libcheckpid.so │ │ ├── libdrm.so │ │ ├── libeffectsconfig.so │ │ ├── liblogwrap_vendor.so │ │ ├── liblowi_wifihal.so │ │ ├── libmfido.so │ │ ├── libmlipay.so │ │ ├── libmlipay@1.1.so │ │ ├── libmt.so │ │ ├── libops.so │ │ ├── libqsap_sdk.so │ │ ├── libssccalapi.so │ │ ├── libtida@1.2.so │ │ ├── libvsim.so │ │ ├── soundfx │ │ │ ├── libasphere.so │ │ │ ├── libaudiopreprocessing.so │ │ │ ├── libbundlewrapper.so │ │ │ ├── libdirac.so │ │ │ ├── libdownmix.so │ │ │ ├── libdynproc.so │ │ │ ├── libeffectproxy.so │ │ │ ├── libldnhncr.so │ │ │ ├── libqcbassboost.so │ │ │ ├── libqcompostprocbundle.so │ │ │ ├── libqcomvisualizer.so │ │ │ ├── libqcomvoiceprocessing.so │ │ │ ├── libqcreverb.so │ │ │ ├── libqcvirt.so │ │ │ ├── libreverbwrapper.so │ │ │ ├── libvisualizer.so │ │ │ └── libvolumelistener.so │ │ ├── vendor.lineage.power@1.0.so │ │ ├── vendor.mokee.power@1.0.so │ │ ├── vendor.nxp.nxpese@1.0.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.0.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.0_vendor.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1_vendor.so │ │ ├── vendor.xiaomi.hardware.displayfeature@1.0.so │ │ ├── vendor.xiaomi.hardware.mfidoca@1.0.so │ │ ├── vendor.xiaomi.hardware.misys@1.0.so │ │ ├── vendor.xiaomi.hardware.misys@2.0.so │ │ ├── vendor.xiaomi.hardware.misys@3.0.so │ │ ├── vendor.xiaomi.hardware.mlipay@1.0.so │ │ ├── vendor.xiaomi.hardware.mlipay@1.1.so │ │ ├── vendor.xiaomi.hardware.mtdservice@1.0.so │ │ ├── vendor.xiaomi.hardware.tidaservice@1.0.so │ │ ├── vendor.xiaomi.hardware.tidaservice@1.1.so │ │ ├── vendor.xiaomi.hardware.tidaservice@1.2.so │ │ └── vendor.xiaomi.hardware.vsimapp@1.0.so │ │ ├── lib64 │ │ ├── hw │ │ │ ├── android.hardware.drm@1.0-impl.so │ │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1-impl.so │ │ │ ├── vendor.xiaomi.hardware.displayfeature@1.0-impl.so │ │ │ ├── vendor.xiaomi.hardware.misys@1.0-impl.so │ │ │ ├── vendor.xiaomi.hardware.misys@2.0-impl.so │ │ │ └── vendor.xiaomi.hardware.misys@3.0-impl.so │ │ ├── libQSEEComAPI.so │ │ ├── libcert_parse.wpa_s.so │ │ ├── libcheckpid.so │ │ ├── libdrm.so │ │ ├── libeffectsconfig.so │ │ ├── libkeystore-engine-wifi-hidl.so │ │ ├── libkeystore-wifi-hidl.so │ │ ├── liblogwrap_vendor.so │ │ ├── liblowi_wifihal.so │ │ ├── libmfido.so │ │ ├── libmlipay.so │ │ ├── libmlipay@1.1.so │ │ ├── libmt.so │ │ ├── libmt@1.2.so │ │ ├── libops.so │ │ ├── libqsap_sdk.so │ │ ├── libssccalapi.so │ │ ├── libtida@1.2.so │ │ ├── vendor.lineage.livedisplay@1.0.so │ │ ├── vendor.lineage.livedisplay@2.0.so │ │ ├── vendor.lineage.power@1.0.so │ │ ├── vendor.lineage.trust@1.0.so │ │ ├── vendor.mokee.livedisplay@2.0.so │ │ ├── vendor.mokee.power@1.0.so │ │ ├── vendor.mokee.touch@1.0.so │ │ ├── vendor.mokee.trust@1.0.so │ │ ├── vendor.nxp.nxpese@1.0.so │ │ ├── vendor.qti.hardware.wifi.hostapd@1.0.so │ │ ├── vendor.qti.hardware.wifi.hostapd@1.1.so │ │ ├── vendor.qti.hardware.wifi.keystore@1.0.so │ │ ├── vendor.qti.hardware.wifi.supplicant@2.0.so │ │ ├── vendor.qti.hardware.wifi.supplicant@2.1.so │ │ ├── vendor.qti.hardware.wifi.wifilearner@1.0.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.0.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.0_vendor.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1.so │ │ ├── vendor.xiaomi.hardware.citsensorservice@1.1_vendor.so │ │ ├── vendor.xiaomi.hardware.displayfeature@1.0.so │ │ ├── vendor.xiaomi.hardware.mfidoca@1.0.so │ │ ├── vendor.xiaomi.hardware.misys@1.0.so │ │ ├── vendor.xiaomi.hardware.misys@2.0.so │ │ ├── vendor.xiaomi.hardware.misys@3.0.so │ │ ├── vendor.xiaomi.hardware.mlipay@1.0.so │ │ ├── vendor.xiaomi.hardware.mlipay@1.1.so │ │ ├── vendor.xiaomi.hardware.mtdservice@1.0.so │ │ ├── vendor.xiaomi.hardware.mtdservice@1.1.so │ │ ├── vendor.xiaomi.hardware.mtdservice@1.2.so │ │ ├── vendor.xiaomi.hardware.tidaservice@1.0.so │ │ ├── vendor.xiaomi.hardware.tidaservice@1.1.so │ │ └── vendor.xiaomi.hardware.tidaservice@1.2.so │ │ └── overlay │ │ ├── AospFrameworkResOverlay.apk │ │ ├── AospWifiResOverlay.apk │ │ ├── DocumentsUIOverlay │ │ └── DocumentsUIOverlay.apk │ │ ├── ElderlyNavigationBarOverlay.apk │ │ ├── GestureLineOverlay.apk │ │ ├── MccMncOverlay.apk │ │ ├── MiuiBiometricResOverlay.apk │ │ ├── MiuiBluetoothOverlay.apk │ │ ├── MiuiFrameworkResOverlay.apk │ │ ├── MiuiSettingsResOverlay.apk │ │ ├── MiuiSystemUIResOverlay.apk │ │ └── OptInAppOverlay │ │ └── OptInAppOverlay.apk ├── Patch2 │ └── META-INF │ │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script └── Patch3 │ ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ ├── update-binary │ │ └── updater-script │ ├── anykernel.sh │ └── tools │ ├── ak3-core.sh │ ├── busybox │ ├── magiskboot │ └── mkbootimg ├── README.md ├── README_EN.md ├── bin ├── e2fsdroid ├── mke2fs └── setup.sh ├── fix ├── ColorOS.sh ├── Flyme.sh ├── H2OS.sh ├── MIUI.sh ├── SmartisanOS.sh └── ZUI.sh ├── make ├── SGSI.sh ├── dynamic_SGSI.sh ├── make.sh ├── makeimg.sh └── oppo.sh └── sgsi.json /.github/workflows/build-XiaoxinSGSIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/.github/workflows/build-XiaoxinSGSIs.yml -------------------------------------------------------------------------------- /Patch/Patch1/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /Patch/Patch1/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/META-INF/com/google/android/updater-script -------------------------------------------------------------------------------- /Patch/Patch1/vendor/app/CneApp/CneApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/app/CneApp/CneApp.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/app/IWlanService/IWlanService.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/app/IWlanService/IWlanService.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/app/IconShapeOverlay/IconShapeOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/app/IconShapeOverlay/IconShapeOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/app/SoterService/SoterService.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/app/SoterService/SoterService.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/app/TimeService/TimeService.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/app/TimeService/TimeService.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/fidoca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/fidoca -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/android.hardware.drm@1.2-service.widevine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/android.hardware.drm@1.2-service.widevine -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/hostapd -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.citsensorservice@1.1-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.citsensorservice@1.1-service -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.displayfeature@1.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.displayfeature@1.0-service -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.misys@1.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.misys@1.0-service -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.misys@2.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.misys@2.0-service -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.misys@3.0-service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/vendor.xiaomi.hardware.misys@3.0-service -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/hw/wpa_supplicant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/hw/wpa_supplicant -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/mlipayd@1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/mlipayd@1.1 -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/mtd@1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/mtd@1.2 -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/tidad@1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/tidad@1.2 -------------------------------------------------------------------------------- /Patch/Patch1/vendor/bin/vsimd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/bin/vsimd -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/bluetooth_qti_audio_policy_configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/bluetooth_qti_audio_policy_configuration.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/hostapd/hostapd.accept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/hostapd/hostapd.accept -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/hostapd/hostapd.deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/hostapd/hostapd.deny -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/hostapd/hostapd_default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/hostapd/hostapd_default.conf -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/hostapd.android.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/hostapd.android.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.citsensorservice@1.1-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.citsensorservice@1.1-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.displayfeature@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.displayfeature@1.0-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.mfidoca@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.mfidoca@1.0-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.misys@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.misys@1.0-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.misys@2.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.misys@2.0-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.misys@3.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.misys@3.0-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.mlipay@1.1-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.mlipay@1.1-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.mtdservice@1.2-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.mtdservice@1.2-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.tidaservice@1.2-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.tidaservice@1.2-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.vsimapp@1.0-service.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/init/vendor.xiaomi.hardware.vsimapp@1.0-service.rc -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/media_profiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/media_profiles.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/media_profiles_V1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/media_profiles_V1_0.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/media_profiles_vendor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/media_profiles_vendor.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/permissions/com.fingerprints.extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/permissions/com.fingerprints.extension.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/permissions/handheld_core_hardware.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/permissions/handheld_core_hardware.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/permissions/vendor.qti.hardware.factory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/permissions/vendor.qti.hardware.factory.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/etc/vintf/manifest/manifest_android.hardware.drm@1.2-service.widevine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/etc/vintf/manifest/manifest_android.hardware.drm@1.2-service.widevine.xml -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/com.qualcomm.qti.wifidisplayhal@1.0-halimpl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/com.qualcomm.qti.wifidisplayhal@1.0-halimpl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/com.qualcomm.qti.wifidisplayhal@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/com.qualcomm.qti.wifidisplayhal@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/hw/android.hardware.drm@1.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/hw/android.hardware.drm@1.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.citsensorservice@1.1-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.citsensorservice@1.1-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.displayfeature@1.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.displayfeature@1.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.misys@1.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.misys@1.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.misys@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.misys@2.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.misys@3.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/hw/vendor.xiaomi.hardware.misys@3.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libQSEEComAPI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libQSEEComAPI.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libcert_parse.wpa_s.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libcert_parse.wpa_s.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libcheckpid.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libcheckpid.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libdrm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libdrm.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libeffectsconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libeffectsconfig.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/liblogwrap_vendor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/liblogwrap_vendor.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/liblowi_wifihal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/liblowi_wifihal.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libmfido.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libmfido.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libmlipay.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libmlipay.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libmlipay@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libmlipay@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libmt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libmt.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libops.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libops.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libqsap_sdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libqsap_sdk.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libssccalapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libssccalapi.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libtida@1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libtida@1.2.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/libvsim.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/libvsim.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libasphere.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libasphere.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libaudiopreprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libaudiopreprocessing.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libbundlewrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libbundlewrapper.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libdirac.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libdirac.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libdownmix.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libdownmix.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libdynproc.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libdynproc.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libeffectproxy.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libeffectproxy.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libldnhncr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libldnhncr.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libqcbassboost.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libqcbassboost.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libqcompostprocbundle.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libqcompostprocbundle.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libqcomvisualizer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libqcomvisualizer.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libqcomvoiceprocessing.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libqcomvoiceprocessing.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libqcreverb.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libqcreverb.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libqcvirt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libqcvirt.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libreverbwrapper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libreverbwrapper.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libvisualizer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libvisualizer.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/soundfx/libvolumelistener.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/soundfx/libvolumelistener.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.lineage.power@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.lineage.power@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.mokee.power@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.mokee.power@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.nxp.nxpese@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.nxp.nxpese@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.0_vendor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.0_vendor.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.1_vendor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.citsensorservice@1.1_vendor.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.displayfeature@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.displayfeature@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mfidoca@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mfidoca@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.misys@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.misys@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.misys@2.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.misys@2.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.misys@3.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.misys@3.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mlipay@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mlipay@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mlipay@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mlipay@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mtdservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.mtdservice@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.tidaservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.tidaservice@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.tidaservice@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.tidaservice@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.tidaservice@1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.tidaservice@1.2.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.vsimapp@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib/vendor.xiaomi.hardware.vsimapp@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/hw/android.hardware.drm@1.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/hw/android.hardware.drm@1.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.citsensorservice@1.1-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.citsensorservice@1.1-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.displayfeature@1.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.displayfeature@1.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.misys@1.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.misys@1.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.misys@2.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.misys@2.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.misys@3.0-impl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/hw/vendor.xiaomi.hardware.misys@3.0-impl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libQSEEComAPI.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libQSEEComAPI.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libcert_parse.wpa_s.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libcert_parse.wpa_s.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libcheckpid.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libcheckpid.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libdrm.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libdrm.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libeffectsconfig.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libeffectsconfig.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libkeystore-engine-wifi-hidl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libkeystore-engine-wifi-hidl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libkeystore-wifi-hidl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libkeystore-wifi-hidl.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/liblogwrap_vendor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/liblogwrap_vendor.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/liblowi_wifihal.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/liblowi_wifihal.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libmfido.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libmfido.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libmlipay.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libmlipay.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libmlipay@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libmlipay@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libmt.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libmt.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libmt@1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libmt@1.2.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libops.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libops.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libqsap_sdk.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libqsap_sdk.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libssccalapi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libssccalapi.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/libtida@1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/libtida@1.2.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.lineage.livedisplay@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.lineage.livedisplay@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.lineage.livedisplay@2.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.lineage.livedisplay@2.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.lineage.power@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.lineage.power@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.lineage.trust@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.lineage.trust@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.mokee.livedisplay@2.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.mokee.livedisplay@2.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.mokee.power@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.mokee.power@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.mokee.touch@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.mokee.touch@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.mokee.trust@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.mokee.trust@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.nxp.nxpese@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.nxp.nxpese@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.hostapd@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.hostapd@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.hostapd@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.hostapd@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.keystore@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.keystore@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.supplicant@2.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.supplicant@2.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.supplicant@2.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.supplicant@2.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.wifilearner@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.qti.hardware.wifi.wifilearner@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.0_vendor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.0_vendor.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.1_vendor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.citsensorservice@1.1_vendor.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.displayfeature@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.displayfeature@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mfidoca@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mfidoca@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.misys@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.misys@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.misys@2.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.misys@2.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.misys@3.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.misys@3.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mlipay@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mlipay@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mlipay@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mlipay@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mtdservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mtdservice@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mtdservice@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mtdservice@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mtdservice@1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.mtdservice@1.2.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.tidaservice@1.0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.tidaservice@1.0.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.tidaservice@1.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.tidaservice@1.1.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.tidaservice@1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/lib64/vendor.xiaomi.hardware.tidaservice@1.2.so -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/AospFrameworkResOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/AospFrameworkResOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/AospWifiResOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/AospWifiResOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/DocumentsUIOverlay/DocumentsUIOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/DocumentsUIOverlay/DocumentsUIOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/ElderlyNavigationBarOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/ElderlyNavigationBarOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/GestureLineOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/GestureLineOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/MccMncOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/MccMncOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/MiuiBiometricResOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/MiuiBiometricResOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/MiuiBluetoothOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/MiuiBluetoothOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/MiuiFrameworkResOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/MiuiFrameworkResOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/MiuiSettingsResOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/MiuiSettingsResOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/MiuiSystemUIResOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/MiuiSystemUIResOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch1/vendor/overlay/OptInAppOverlay/OptInAppOverlay.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch1/vendor/overlay/OptInAppOverlay/OptInAppOverlay.apk -------------------------------------------------------------------------------- /Patch/Patch2/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch2/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /Patch/Patch2/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | # Dummy file; update-binary is a shell script. 2 | -------------------------------------------------------------------------------- /Patch/Patch3/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch3/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /Patch/Patch3/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | # Dummy file; update-binary is a shell script. 2 | -------------------------------------------------------------------------------- /Patch/Patch3/anykernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch3/anykernel.sh -------------------------------------------------------------------------------- /Patch/Patch3/tools/ak3-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch3/tools/ak3-core.sh -------------------------------------------------------------------------------- /Patch/Patch3/tools/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch3/tools/busybox -------------------------------------------------------------------------------- /Patch/Patch3/tools/magiskboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch3/tools/magiskboot -------------------------------------------------------------------------------- /Patch/Patch3/tools/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/Patch/Patch3/tools/mkbootimg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/README_EN.md -------------------------------------------------------------------------------- /bin/e2fsdroid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/bin/e2fsdroid -------------------------------------------------------------------------------- /bin/mke2fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/bin/mke2fs -------------------------------------------------------------------------------- /bin/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/bin/setup.sh -------------------------------------------------------------------------------- /fix/ColorOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/fix/ColorOS.sh -------------------------------------------------------------------------------- /fix/Flyme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/fix/Flyme.sh -------------------------------------------------------------------------------- /fix/H2OS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/fix/H2OS.sh -------------------------------------------------------------------------------- /fix/MIUI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/fix/MIUI.sh -------------------------------------------------------------------------------- /fix/SmartisanOS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/fix/SmartisanOS.sh -------------------------------------------------------------------------------- /fix/ZUI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/fix/ZUI.sh -------------------------------------------------------------------------------- /make/SGSI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/make/SGSI.sh -------------------------------------------------------------------------------- /make/dynamic_SGSI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/make/dynamic_SGSI.sh -------------------------------------------------------------------------------- /make/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/make/make.sh -------------------------------------------------------------------------------- /make/makeimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/make/makeimg.sh -------------------------------------------------------------------------------- /make/oppo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/make/oppo.sh -------------------------------------------------------------------------------- /sgsi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaoxindada/actions_make_XiaoxinSGSIs/HEAD/sgsi.json --------------------------------------------------------------------------------