WAApwImpl.podspec | ●●●●● patch | view | raw | blame | history | |
config/wa_sdk_impl_config_apw.xml | ●●●●● patch | view | raw | blame | history | |
frameworks/WAApwImpl.framework/Headers/WAApw.h | ●●●●● patch | view | raw | blame | history | |
frameworks/WAApwImpl.framework/Headers/WAApwCore.h | ●●●●● patch | view | raw | blame | history | |
frameworks/WAApwImpl.framework/Headers/WAApwImpl.h | ●●●●● patch | view | raw | blame | history | |
frameworks/WAApwImpl.framework/Info.plist | patch | view | raw | blame | history | |
frameworks/WAApwImpl.framework/Modules/module.modulemap | ●●●●● patch | view | raw | blame | history | |
frameworks/WAApwImpl.framework/WAApwImpl | patch | view | raw | blame | history |
WAApwImpl.podspec
New file @@ -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 config/wa_sdk_impl_config_apw.xml
New file @@ -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> frameworks/WAApwImpl.framework/Headers/WAApw.h
New file @@ -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 frameworks/WAApwImpl.framework/Headers/WAApwCore.h
New file @@ -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 frameworks/WAApwImpl.framework/Headers/WAApwImpl.h
New file @@ -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 frameworks/WAApwImpl.framework/Info.plistBinary files differ
frameworks/WAApwImpl.framework/Modules/module.modulemap
New file @@ -0,0 +1,6 @@ framework module WAApwImpl { umbrella header "WAApwImpl.h" export * module * { export * } } frameworks/WAApwImpl.framework/WAApwImplBinary files differ