集成httpdns

This commit is contained in:
kai60
2022-01-17 11:40:56 +08:00
parent 7b7faab5ce
commit f63f7d216c
82 changed files with 2789 additions and 13 deletions
@@ -0,0 +1,30 @@
//
// AlicloudSender.h
// AlicloudSender
//
// Created by sky on 2021/1/25.
// Copyright © 2021 aliyun. All rights reserved.
//
#import <Foundation/Foundation.h>
#define ALICLOUDRESTSEND_VERSION @"1.0.0.3"
//! Project version number for AlicloudSender.
FOUNDATION_EXPORT double AlicloudSenderVersionNumber;
//! Project version string for AlicloudSender.
FOUNDATION_EXPORT const unsigned char AlicloudSenderVersionString[];
NS_ASSUME_NONNULL_BEGIN
@interface AlicloudSender : NSObject
+ (instancetype)shareInstance;
- (void)sendEvent:(NSString *)event appKey:(NSString *)appkey sdkId:(NSString *)sdkId sdkVersion:(NSString *)sdkVersion extParams:(NSDictionary *)extParams;
@end
NS_ASSUME_NONNULL_END
@@ -0,0 +1,6 @@
framework module AlicloudSender {
umbrella header "AlicloudSender.h"
export *
module * { export * }
}