Files
aistream-test/UTS 插件工程/uni_modules/uts-animation-view/utssdk/app-android/index.uts
T
2025-11-27 20:48:18 +08:00

21 lines
375 B
Plaintext

/**
* 判断当前的基座是否已经集成了sdk, 即是否是自定义基座
*/
export function checkHasLottieIntegration():boolean{
let hasIntegration = true
try{
let xClass = Class.forName("com.airbnb.lottie.LottieDrawable")
console.log(xClass);
}catch(e:Exception){
hasIntegration = false;
}
if(!hasIntegration){
return false;
}
return true
}