Hi
@Igor Eisberg,
I am also experiencing this issue and decided to investigate. So, I found out that the issue is this.
Code:
NativeLog@release-dev2.25.3.28: BeautyWapper [/Users/xingdaming/AndroidStudioProjects/VideoSDK/videosdk/src/main/cpp/modules/plugin/beauty/BeautyWapper.cpp](18) dlopen get error: dlopen failed: library "/product/app/MiMediaEditor/lib/arm64/libFaceBeautyWrapper.so" not found
And upon checking, the issue is not from Xiaomi but from your end. The problem is that you made MiMediaEditor a system app. That app is meant to be a data app only as data apps have a behavior to extract their library outside the APK whenever you install it. But this does not happen to a system app. So, that CPP function could not find the library file as it is still inside the APK.
I modified my copy of the xiaomi.eu ROM and I was able to fix this by moving MiMediaEditor to product_a/product/data-app. If you want to really make MiMediaEditor a system app for some reason then you can still fix this by extracting the lib folder outside the APK and rename arm64-v8 folder to arm64.