-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Wonday
committed
Nov 3, 2019
1 parent
7de5a40
commit 57bc05d
Showing
6 changed files
with
129 additions
and
8 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
ios/libs/AlicloudUtils.framework/Headers/EMASBeaconService.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// | ||
// EMASBeaconService.h | ||
// AlicloudBeacon | ||
// | ||
// Created by junmo on 2017/7/6. | ||
// Copyright © 2017年 junmo. All rights reserved. | ||
// | ||
|
||
#ifndef EMASBeaconService_h | ||
#define EMASBeaconService_h | ||
|
||
@interface EMASBeaconConfiguration : NSObject | ||
|
||
- (instancetype)initWithData:(NSData *)data; | ||
- (id)getConfigureItemByKey:(NSString *)key; | ||
|
||
@end | ||
|
||
typedef void (^AlicloudBeaconCallbackHandler)(BOOL res, NSError *error); | ||
|
||
@interface EMASBeaconService : NSObject | ||
|
||
- (instancetype)initWithAppKey:(NSString *)appKey | ||
appSecret:(NSString *)appSecret | ||
SDKVersion:(NSString *)SDKVersion | ||
SDKID:(NSString *)SDKID; | ||
|
||
- (instancetype)initWithAppKey:(NSString *)appKey | ||
appSecret:(NSString *)appSecret | ||
SDKVersion:(NSString *)SDKVersion | ||
SDKID:(NSString *)SDKID | ||
extension:(NSDictionary *)extension; | ||
|
||
- (void)enableLog:(BOOL)enabled; | ||
- (BOOL)isLogEnabled; | ||
|
||
//- (void)getBeaconConfigByKey:(NSString *)key | ||
// completionHandler:(void(^)(EMASBeaconConfiguration *configuration, NSError *error))completionHandler; | ||
|
||
- (void)getBeaconConfigStringByKey:(NSString *)key | ||
completionHandler:(void(^)(NSString *result, NSError *error))completionHandler; | ||
|
||
@end | ||
|
||
#endif /* EMASBeaconService_h */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>BuildMachineOSBuild</key> | ||
<string>17A405</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>UTDID</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>Taobao.UTDID</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>UTDID</string> | ||
<key>CFBundlePackageType</key> | ||
<string>FMWK</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.1.0.17-SNAPSHOT</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleSupportedPlatforms</key> | ||
<array> | ||
<string>iPhoneOS</string> | ||
</array> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
<key>DTCompiler</key> | ||
<string>com.apple.compilers.llvm.clang.1_0</string> | ||
<key>DTPlatformBuild</key> | ||
<string>15A372</string> | ||
<key>DTPlatformName</key> | ||
<string>iphoneos</string> | ||
<key>DTPlatformVersion</key> | ||
<string>11.0</string> | ||
<key>DTSDKBuild</key> | ||
<string>15A372</string> | ||
<key>DTSDKName</key> | ||
<string>iphoneos11.0</string> | ||
<key>DTXcode</key> | ||
<string>0900</string> | ||
<key>DTXcodeBuild</key> | ||
<string>9A235</string> | ||
<key>MinimumOSVersion</key> | ||
<string>4.3</string> | ||
<key>UIDeviceFamily</key> | ||
<array> | ||
<integer>1</integer> | ||
</array> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// UTTeamWork.h | ||
// UTMini | ||
// | ||
// Created by ljianfeng on 2019/9/29. | ||
// Copyright © 2019 alibaba. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface UTTeamWork : NSObject | ||
/** | ||
* @brief 自定义https上传域名 | ||
* | ||
* @param url 指定的https上传域名,比如以https://开头 | ||
* | ||
* @warning 调用说明:需要在初始化UT之前调用(setAppkey之前) | ||
*/ | ||
+ (void)setHttpsUploadUrl:(NSString *)url; | ||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.