1 files added
	
		
		9 files modified
	
		
		9 files deleted
	
	
 
	
	
	
	
	
	
	
	
 |  |  | 
 |  |  | Pod::Spec.new do |s| | 
 |  |  |  | 
 |  |  | s.name = 'WAVkImpl' | 
 |  |  | s.version = '3.6.0' | 
 |  |  | s.version = '3.6.1' | 
 |  |  | s.summary = 'WAVkImpl framework is production environment.' | 
 |  |  | s.license = 'MIT' | 
 |  |  | s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" } | 
 |  |  | 
 |  |  | s.vendored_frameworks = 'frameworks/*.framework' | 
 |  |  | s.resources = ['config/*.xml'] | 
 |  |  | s.requires_arc = true | 
 |  |  | s.dependency 'WASdkIntf', '~> 3.6.0'   #此处添加私有库依赖 | 
 |  |  | s.dependency 'WASdkImpl', '~> 3.6.0' | 
 |  |  | s.dependency 'WASdkIntf', '~> 3.6.1'   #此处添加私有库依赖 | 
 |  |  | s.dependency 'WASdkImpl', '~> 3.6.1' | 
 |  |  | end | 
 
 |  |  | 
 |  |  |  | 
 |  |  | #import <Foundation/Foundation.h> | 
 |  |  |  | 
 |  |  | @interface NSString (MD5) | 
 |  |  | @interface NSString (VKSMD5) | 
 |  |  |  | 
 |  |  | - (NSString *)MD5; | 
 |  |  | - (NSString *)vks_md5; | 
 |  |  |  | 
 |  |  | @end | 
 
| New file | 
 |  |  | 
 |  |  | // | 
 |  |  | //  VKSdkFramework.h | 
 |  |  | //  VKSdkFramework | 
 |  |  | // | 
 |  |  | //  Created by wuyx on 2017/1/3. | 
 |  |  | //  Copyright © 2017年 GHW. All rights reserved. | 
 |  |  | // | 
 |  |  |  | 
 |  |  | #import <UIKit/UIKit.h> | 
 |  |  |  | 
 |  |  | //! Project version number for VKSdkFramework. | 
 |  |  | FOUNDATION_EXPORT double VKSdkFrameworkVersionNumber; | 
 |  |  |  | 
 |  |  | //! Project version string for VKSdkFramework. | 
 |  |  | FOUNDATION_EXPORT const unsigned char VKSdkFrameworkVersionString[]; | 
 |  |  |  | 
 |  |  | // In this header, you should import all the public headers of your framework using statements like #import <VKSdkFramework/PublicHeader.h> | 
 |  |  | //time:2017/1/3 11:28 | 
 |  |  |  | 
 
 |  |  | 
 |  |  | //  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | 
 |  |  | //  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 
 |  |  |  | 
 |  |  | #define VK_SDK_VERSION @"1.4.2" | 
 |  |  | #define VK_SDK_API_VERSION @"5.52" | 
 |  |  | #define VK_SDK_VERSION @"1.4.6" | 
 |  |  | #define VK_SDK_API_VERSION @"5.60" | 
 
 |  |  | 
 |  |  | } | 
 |  |  |  | 
 |  |  | static inline NSDictionary *VK_ENSURE_DICT(id data) { | 
 |  |  |     return [data isKindOfClass:NSDictionary.class] ? data : nil; | 
 |  |  |     return [data isKindOfClass:[NSDictionary class]] ? data : nil; | 
 |  |  | } | 
 |  |  |  | 
 |  |  | static inline NSArray *VK_ENSURE_ARRAY(id data) { | 
 |  |  |     return [data isKindOfClass:NSArray.class] ? data : nil; | 
 |  |  |     return [data isKindOfClass:[NSArray class]] ? data : nil; | 
 |  |  | } | 
 |  |  |  | 
 |  |  | static inline id VK_ENSURE(id data, Class class) { | 
 |  |  |     return [data isKindOfClass:class] ? data : nil; | 
 |  |  | } | 
 |  |  | static inline id VK_ENSURE(id data, Class objectClass) { | 
 |  |  |     return [data isKindOfClass:objectClass] ? data : nil; | 
 |  |  | } | 
 
 |  |  | 
 |  |  |  | 
 |  |  | // In this header, you should import all the public headers of your framework using statements like #import <WAVkImpl/PublicHeader.h> | 
 |  |  |  | 
 |  |  | //time:2016/11/29 15:40 | 
 |  |  | //time:2017/1/3 09:56 ver:3.6.1 |