阿里云日志服务 react native SDK
集成 AliyunLogObjc 和 aliyun-log-android-sdk
npm i --save react-native-aliyun-log
react-native link react-native-aliyun-log
在工程中参考 AliyunLogObjc,使用 Carthage 方式集成
github "lujiajing1126/AliyunLogObjc"
import AliyunLog from 'react-native-aliyun-log';
AliyunLog.init('endPoint', 'accessKeyId', 'accessKeySecret', null, 'project');
AliyunLog.post('app', 'topic', 'source', [{ key: 'key1', content: 'content1' }, { key: 'key2', content: 'content2' }]);