From 61d1d20bff5b89584873fddc814e46ed1c24e2aa Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Tue, 28 Mar 2017 16:09:47 +0800
Subject: [PATCH] 添加V3.6.2

---
 frameworks/WAApwImpl.framework/WAApwImpl                |    0 
 frameworks/WAApwImpl.framework/Headers/WAApwCore.h      |   24 ++++++++++++
 frameworks/WAApwImpl.framework/Headers/WAApw.h          |   15 +++++++
 frameworks/WAApwImpl.framework/Modules/module.modulemap |    6 +++
 WAApwImpl.podspec                                       |   25 ++++++++++++
 config/wa_sdk_impl_config_apw.xml                       |    8 ++++
 frameworks/WAApwImpl.framework/Info.plist               |    0 
 frameworks/WAApwImpl.framework/Headers/WAApwImpl.h      |   19 +++++++++
 8 files changed, 97 insertions(+), 0 deletions(-)

diff --git a/WAApwImpl.podspec b/WAApwImpl.podspec
new file mode 100644
index 0000000..d6e822e
--- /dev/null
+++ b/WAApwImpl.podspec
@@ -0,0 +1,25 @@
+#
+#  Be sure to run `pod spec lint WAApImpl.podspec' to ensure this is a
+#  valid spec and to remove all comments including this before submitting the spec.
+#
+#  To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
+#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
+#
+
+Pod::Spec.new do |s|
+
+s.name = 'WAApwImpl'
+s.version = '3.6.2'
+s.summary = 'WAApwImpl framework in testing environment.'
+s.license = 'MIT'
+s.author = { "Wuyx" => "wuyixin_gh@gamehollywood.com" }
+s.homepage = 'http://repo.wingsdk.cn:8082/summary/WAApwImpl.git'
+s.source = { :git => "http://admin@repo.wingsdk.cn:8082/r/WAApwImpl.git" , :tag => s.version}
+s.platform = :ios
+s.ios.deployment_target = "7.0"
+s.vendored_frameworks = 'frameworks/*.framework'
+s.resources = ['config/*.xml']
+s.requires_arc = true
+s.dependency 'WASdkIntf', '~> 3.6.2'   #此处添加私有库依赖
+s.dependency 'WASdkImpl', '~> 3.6.2'
+end
diff --git a/config/wa_sdk_impl_config_apw.xml b/config/wa_sdk_impl_config_apw.xml
new file mode 100644
index 0000000..6b63825
--- /dev/null
+++ b/config/wa_sdk_impl_config_apw.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<config>
+	<version val="AP3.6.2"/>
+    <comps>
+        <!-- 应用墙模块 -->
+        <comp module="APW" plaf="APW" mandatory="NO" value="WAApw" desc="应用墙"/>
+    </comps>
+</config>
diff --git a/frameworks/WAApwImpl.framework/Headers/WAApw.h b/frameworks/WAApwImpl.framework/Headers/WAApw.h
new file mode 100644
index 0000000..0cefa43
--- /dev/null
+++ b/frameworks/WAApwImpl.framework/Headers/WAApw.h
@@ -0,0 +1,15 @@
+//
+//  WAApw.h
+//  WAApwImplUI
+//
+//  Created by wuyx on 16/3/10.
+//  Copyright © 2016年 GHW-T-01. All rights reserved.
+//
+
+#import <Foundation/Foundation.h>
+#import <WASdkIntf/WASdkIntf.h>
+#import "WASdkExtend.h"
+@interface WAApw : WAIApw
+-(void)showEntryFlowIcon;
+-(void)hideEntryFlowIcon;
+@end
diff --git a/frameworks/WAApwImpl.framework/Headers/WAApwCore.h b/frameworks/WAApwImpl.framework/Headers/WAApwCore.h
new file mode 100644
index 0000000..613f5df
--- /dev/null
+++ b/frameworks/WAApwImpl.framework/Headers/WAApwCore.h
@@ -0,0 +1,24 @@
+//
+//  WAApwCore.h
+//  WAApwImplUI
+//
+//  Created by hank on 2017/3/21.
+//  Copyright © 2017年 hank. All rights reserved.
+//
+
+#import <WASdkIntf/WASdkIntf.h>
+
+@class WACoreProxy;
+@class WAApwCore;
+#define WAApwLog(fmt,...) {\
+if([WACoreProxy isDebugMode]){\
+NSLog((@"WAApw LOG [(version %@) %s ]:" fmt), [WAApwCore getVersion],__FUNCTION__, ##__VA_ARGS__);\
+[WACoreProxy addLogWithString:[NSString stringWithFormat:(@"(version %@) %s ]:" fmt),[WAApwCore getVersion],__FUNCTION__, ##__VA_ARGS__]];\
+}\
+}
+
+@interface WAApwCore : WACore
+
++(NSString*)getVersion;
+
+@end
diff --git a/frameworks/WAApwImpl.framework/Headers/WAApwImpl.h b/frameworks/WAApwImpl.framework/Headers/WAApwImpl.h
new file mode 100644
index 0000000..b3669ca
--- /dev/null
+++ b/frameworks/WAApwImpl.framework/Headers/WAApwImpl.h
@@ -0,0 +1,19 @@
+//
+//  WAApwImpl.h
+//  WAApwImpl
+//
+//  Created by hank on 2017/3/20.
+//  Copyright © 2017年 hank. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+//! Project version number for WAApwImpl.
+FOUNDATION_EXPORT double WAApwImplVersionNumber;
+
+//! Project version string for WAApwImpl.
+FOUNDATION_EXPORT const unsigned char WAApwImplVersionString[];
+
+// In this header, you should import all the public headers of your framework using statements like #import <WAApwImpl/PublicHeader.h>
+
+//time:2017/3/25 11:53 ver:3.6.2
diff --git a/frameworks/WAApwImpl.framework/Info.plist b/frameworks/WAApwImpl.framework/Info.plist
new file mode 100644
index 0000000..d31d57c
--- /dev/null
+++ b/frameworks/WAApwImpl.framework/Info.plist
Binary files differ
diff --git a/frameworks/WAApwImpl.framework/Modules/module.modulemap b/frameworks/WAApwImpl.framework/Modules/module.modulemap
new file mode 100644
index 0000000..5a0e8ef
--- /dev/null
+++ b/frameworks/WAApwImpl.framework/Modules/module.modulemap
@@ -0,0 +1,6 @@
+framework module WAApwImpl {
+  umbrella header "WAApwImpl.h"
+
+  export *
+  module * { export * }
+}
diff --git a/frameworks/WAApwImpl.framework/WAApwImpl b/frameworks/WAApwImpl.framework/WAApwImpl
new file mode 100644
index 0000000..0b11d2a
--- /dev/null
+++ b/frameworks/WAApwImpl.framework/WAApwImpl
Binary files differ

--
Gitblit v1.8.0