| | |
| | | Pod::Spec.new do |s| |
| | | |
| | | s.name = 'WASdkImpl' |
| | | s.version = '3.6.6' |
| | | s.version = '3.6.7' |
| | | s.summary = 'WASdkImpl framework in production environment.' |
| | | s.license = 'MIT' |
| | | s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" } |
| | |
| | | s.resources = ['config/*.xml','bundle/WASDK-Resource.bundle','localizable/*.plist'] |
| | | s.libraries = 'sqlite3','z' |
| | | s.requires_arc = true |
| | | s.dependency 'WASdkIntf', '~> 3.6.6' #此处添加私有库依赖 |
| | | s.dependency 'WASdkIntf', '~> 3.6.7' #此处添加私有库依赖 |
| | | |
| | | end |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <config> |
| | | <version val="WA3.6.6"/> |
| | | <version val="WA3.6.7"/> |
| | | <comps> |
| | | <!-- 用户模块 --> |
| | | <comp module="USR" plaf="WINGA" mandatory="YES" value="WASdkUser" desc="WINGA用户账户"/> |
| | |
| | | @protocol AFImageRequestCache <AFImageCache> |
| | | |
| | | /** |
| | | Asks if the image should be cached using an identifier created from the request and additional identifier. |
| | | |
| | | @param image The image to be cached. |
| | | @param request The unique URL request identifing the image asset. |
| | | @param identifier The additional identifier to apply to the URL request to identify the image. |
| | | |
| | | @return A BOOL indicating whether or not the image should be added to the cache. YES will cache, NO will prevent caching. |
| | | */ |
| | | - (BOOL)shouldCacheImage:(UIImage *)image forRequest:(NSURLRequest *)request withAdditionalIdentifier:(nullable NSString *)identifier; |
| | | |
| | | /** |
| | | Adds the image to the cache using an identifier created from the request and additional identifier. |
| | | |
| | | @param image The image to cache. |
| | |
| | | |
| | | ## Methods to Override |
| | | |
| | | To change the behavior of all data task operation construction, which is also used in the `GET` / `POST` / et al. convenience methods, override `dataTaskWithRequest:completionHandler:`. |
| | | To change the behavior of all data task operation construction, which is also used in the `GET` / `POST` / et al. convenience methods, override `dataTaskWithRequest:uploadProgress:downloadProgress:completionHandler:`. |
| | | |
| | | ## Serialization |
| | | |
| | |
| | | */ |
| | | @property (nonatomic, strong) AFHTTPResponseSerializer <AFURLResponseSerialization> * responseSerializer; |
| | | |
| | | ///------------------------------- |
| | | /// @name Managing Security Policy |
| | | ///------------------------------- |
| | | |
| | | /** |
| | | The security policy used by created session to evaluate server trust for secure connections. `AFURLSessionManager` uses the `defaultPolicy` unless otherwise specified. A security policy configured with `AFSSLPinningModePublicKey` or `AFSSLPinningModeCertificate` can only be applied on a session manager initialized with a secure base URL (i.e. https). Applying a security policy with pinning enabled on an insecure session manager throws an `Invalid Security Policy` exception. |
| | | */ |
| | | @property (nonatomic, strong) AFSecurityPolicy *securityPolicy; |
| | | |
| | | ///--------------------- |
| | | /// @name Initialization |
| | | ///--------------------- |
| | |
| | | + (NSURLCache *)defaultURLCache; |
| | | |
| | | /** |
| | | The default `NSURLSessionConfiguration` with common usage parameter values. |
| | | */ |
| | | + (NSURLSessionConfiguration *)defaultURLSessionConfiguration; |
| | | |
| | | /** |
| | | Default initializer |
| | | |
| | | @return An instance of `AFImageDownloader` initialized with default values. |
| | |
| | | - (instancetype)init; |
| | | |
| | | /** |
| | | Initializer with specific `URLSessionConfiguration` |
| | | |
| | | @param configuration The `NSURLSessionConfiguration` to be be used |
| | | |
| | | @return An instance of `AFImageDownloader` initialized with default values and custom `NSURLSessionConfiguration` |
| | | */ |
| | | - (instancetype)initWithSessionConfiguration:(NSURLSessionConfiguration *)configuration; |
| | | |
| | | /** |
| | | Initializes the `AFImageDownloader` instance with the given session manager, download prioritization, maximum active download count and image cache. |
| | | |
| | | @param sessionManager The session manager to use to download images. |
| | |
| | | */ |
| | | - (instancetype)initWithReachability:(SCNetworkReachabilityRef)reachability NS_DESIGNATED_INITIALIZER; |
| | | |
| | | /** |
| | | * Initializes an instance of a network reachability manager |
| | | * |
| | | * @return nil as this method is unavailable |
| | | */ |
| | | - (nullable instancetype)init NS_UNAVAILABLE; |
| | | |
| | | ///-------------------------------------------------- |
| | | /// @name Starting & Stopping Reachability Monitoring |
| | | ///-------------------------------------------------- |
| | |
| | | // AFNetworking.h |
| | | // Copyright (c) 2011–2016 Alamofire Software Foundation ( http://alamofire.org/ ) |
| | | // |
| | | // 3.2.0 |
| | | // Permission is hereby granted, free of charge, to any person obtaining a copy |
| | | // of this software and associated documentation files (the "Software"), to deal |
| | | // in the Software without restriction, including without limitation the rights |
| | |
| | | |
| | | - (instancetype)init; |
| | | |
| | | /** |
| | | The string encoding used to serialize data received from the server, when no string encoding is specified by the response. `NSUTF8StringEncoding` by default. |
| | | */ |
| | | @property (nonatomic, assign) NSStringEncoding stringEncoding; |
| | | @property (nonatomic, assign) NSStringEncoding stringEncoding DEPRECATED_MSG_ATTRIBUTE("The string encoding is never used. AFHTTPResponseSerializer only validates status codes and content types but does not try to decode the received data in any way."); |
| | | |
| | | /** |
| | | Creates and returns a serializer with default configuration. |
| | |
| | | - `application/json` |
| | | - `text/json` |
| | | - `text/javascript` |
| | | |
| | | In RFC 7159 - Section 8.1, it states that JSON text is required to be encoded in UTF-8, UTF-16, or UTF-32, and the default encoding is UTF-8. NSJSONSerialization provides support for all the encodings listed in the specification, and recommends UTF-8 for efficiency. Using an unsupported encoding will result in serialization error. See the `NSJSONSerialization` documentation for more details. |
| | | */ |
| | | @interface AFJSONResponseSerializer : AFHTTPResponseSerializer |
| | | |
| | |
| | | - (instancetype)init; |
| | | |
| | | /** |
| | | Input and output options specifically intended for `NSXMLDocument` objects. For possible values, see the `NSJSONSerialization` documentation section "NSJSONReadingOptions". `0` by default. |
| | | Input and output options specifically intended for `NSXMLDocument` objects. For possible values, see the `NSXMLDocument` documentation section "Input and Output Options". `0` by default. |
| | | */ |
| | | @property (nonatomic, assign) NSUInteger options; |
| | | |
| | |
| | | @param completionHandler A block object to be executed when the task finishes. This block has no return value and takes three arguments: the server response, the response object created by that serializer, and the error that occurred, if any. |
| | | */ |
| | | - (NSURLSessionDataTask *)dataTaskWithRequest:(NSURLRequest *)request |
| | | completionHandler:(nullable void (^)(NSURLResponse *response, id _Nullable responseObject, NSError * _Nullable error))completionHandler; |
| | | completionHandler:(nullable void (^)(NSURLResponse *response, id _Nullable responseObject, NSError * _Nullable error))completionHandler DEPRECATED_ATTRIBUTE; |
| | | |
| | | /** |
| | | Creates an `NSURLSessionDataTask` with the specified request. |
| | |
| | | |
| | | @param block A block object to be executed when an HTTP request is attempting to perform a redirection to a different URL. The block returns the request to be made for the redirection, and takes four arguments: the session, the task, the redirection response, and the request corresponding to the redirection response. |
| | | */ |
| | | - (void)setTaskWillPerformHTTPRedirectionBlock:(nullable NSURLRequest * (^)(NSURLSession *session, NSURLSessionTask *task, NSURLResponse *response, NSURLRequest *request))block; |
| | | - (void)setTaskWillPerformHTTPRedirectionBlock:(nullable NSURLRequest * _Nullable (^)(NSURLSession *session, NSURLSessionTask *task, NSURLResponse *response, NSURLRequest *request))block; |
| | | |
| | | /** |
| | | Sets a block to be executed when a session task has received a request specific authentication challenge, as handled by the `NSURLSessionTaskDelegate` method `URLSession:task:didReceiveChallenge:completionHandler:`. |
| | |
| | | extern NSString *const WASDK_PARAM_KEY_PUSER_ID_LOWER; |
| | | extern NSString *const WASDK_PARAM_KEY_PUSER_IDS; |
| | | extern NSString *const WASDK_PARAM_KEY_GAMEUSER_ID; |
| | | extern NSString *const WASDK_PARAM_KEY_NICK_NAME; |
| | | extern NSString *const WASDK_PARAM_KEY_PUSER_NAME; |
| | | extern NSString *const WASDK_PARAM_KEY_SERVER_ID; |
| | | extern NSString *const WASDK_PARAM_KEY_OS; |
| | | extern NSString *const WASDK_PARAM_KEY_OS_VERSION; |
| | |
| | | #import <WACommon/WADevice.h> |
| | | #import <WACommon/WAReachability.h> |
| | | |
| | | //time:2017/8/30 09:56 |
| | | //time:2018/4/16 10:38 |
| | | |
| | |
| | | </data> |
| | | <key>Headers/WACommConstants.h</key> |
| | | <data> |
| | | 4wAbuHLPQg4Vqq/j6fdsfPIDgZE= |
| | | Ky/rcbFVdU3Xe3MCWq9lg9qWcvI= |
| | | </data> |
| | | <key>Headers/WACommon.h</key> |
| | | <data> |
| | | PZZr9NtBCLvzG/zhye/RqAJLkxs= |
| | | M47nUdyzQFUZmUiP/F7LPc4VYh4= |
| | | </data> |
| | | <key>Headers/WADevice.h</key> |
| | | <data> |
| | |
| | | <dict> |
| | | <key>hash</key> |
| | | <data> |
| | | 4wAbuHLPQg4Vqq/j6fdsfPIDgZE= |
| | | Ky/rcbFVdU3Xe3MCWq9lg9qWcvI= |
| | | </data> |
| | | <key>hash2</key> |
| | | <data> |
| | | /SnzlFAEKYKuQGIRvGmiVwnhXDwElGTDlPRwL0kUWZg= |
| | | Bxn5qtKGk9u/5dAy1UvD5QOW7BYqLEr++L1EPaL2BQ0= |
| | | </data> |
| | | </dict> |
| | | <key>Headers/WACommon.h</key> |
| | | <dict> |
| | | <key>hash</key> |
| | | <data> |
| | | PZZr9NtBCLvzG/zhye/RqAJLkxs= |
| | | M47nUdyzQFUZmUiP/F7LPc4VYh4= |
| | | </data> |
| | | <key>hash2</key> |
| | | <data> |
| | | e+nPTkWdMmIITF6AZkCE/7H4gWsgwu4FJ1KFTtXT+kI= |
| | | SFH09KbRT76cUQdUMkzGRgdCX9n7KWFi+EzqjgEX2PA= |
| | | </data> |
| | | </dict> |
| | | <key>Headers/WADevice.h</key> |
| | |
| | | |
| | | // In this header, you should import all the public headers of your framework using statements like #import <WASdkImpl/PublicHeader.h> |
| | | |
| | | //time:2018/2/24 15:54 ver:3.6.6 |
| | | //time:2018/4/11 14:29 ver:3.6.7 |