/**
 * @description 发短信
 * @param params 
 */
export function makeTexting(params:{sms}):boolean {
    let applicationAndroidIns = ApplicationAndroidIns
    if(isAndroid){
        let intent = new android.content.Intent(android.content.Intent.ACTION_SENDTO);
        console.log('params.sms=====>',params.sms)
        let data = android.net.Uri.parse("sms:" + params.sms);
        intent.setData(data);
        intent.setFlags(android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
        applicationAndroidIns.context.startActivity(intent);
        return true
    }else if(isIOS){
        UIApplication.sharedApplication.openURL(NSURL.URLWithString(`sms://${params.sms}`));
        return true
    }else{
        return false
    }
}
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐