index.uts 375 字节
Newer Older
打打卡夫卡's avatar
打打卡夫卡 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

/**
 * 判断当前的基座是否已经集成了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
}