Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
C
clx-fluwx
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
clx-fluwx
Commits
4ecee440
提交
4ecee440
authored
5月 13, 2023
作者:
JarvanMo
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update iOS issue
上级
437994eb
隐藏空白字符变更
内嵌
并排
正在显示
9 个修改的文件
包含
28 行增加
和
25 行删除
+28
-25
FluwxAuthHandler.h
ios/Classes/FluwxAuthHandler.h
+3
-3
FluwxAuthHandler.m
ios/Classes/FluwxAuthHandler.m
+1
-1
FluwxDelegate.m
ios/Classes/FluwxDelegate.m
+1
-1
FluwxPlugin.m
ios/Classes/FluwxPlugin.m
+5
-5
FluwxShareHandler.m
ios/Classes/FluwxShareHandler.m
+5
-5
FluwxStringUtil.m
ios/Classes/FluwxStringUtil.m
+2
-3
NSStringWrapper.m
ios/Classes/NSStringWrapper.m
+1
-1
WXApiRequestHandler.m
ios/Classes/WXApiRequestHandler.m
+4
-4
fluwx.podspec
ios/fluwx.podspec
+6
-2
没有找到文件。
ios/Classes/FluwxAuthHandler.h
浏览文件 @
4ecee440
...
@@ -4,9 +4,9 @@
...
@@ -4,9 +4,9 @@
#import <Foundation/Foundation.h>
#import <Foundation/Foundation.h>
#import <Flutter/Flutter.h>
#import <Flutter/Flutter.h>
#import
"FluwxPlugin.h"
#import
<fluwx/FluwxPlugin.h>
#import
"WXApiRequestHandler.h"
#import
<fluwx/WXApiRequestHandler.h>
#import
"WechatAuthSDK.h"
#import
<WechatAuthSDK.h>
#import <WXApi.h>
#import <WXApi.h>
@class
FluwxStringUtil
;
@class
FluwxStringUtil
;
...
...
ios/Classes/FluwxAuthHandler.m
浏览文件 @
4ecee440
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
//
//
#import
"FluwxAuthHandler.h"
#import
<fluwx/FluwxAuthHandler.h>
@implementation
FluwxAuthHandler
@implementation
FluwxAuthHandler
...
...
ios/Classes/FluwxDelegate.m
浏览文件 @
4ecee440
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
//
//
#import <Foundation/Foundation.h>
#import <Foundation/Foundation.h>
#import
"FluwxDelegate.h"
#import
<fluwx/FluwxDelegate.h>
#import <WXApi.h>
#import <WXApi.h>
@implementation
FluwxDelegate
@implementation
FluwxDelegate
...
...
ios/Classes/FluwxPlugin.m
浏览文件 @
4ecee440
#import
"FluwxPlugin.h"
#import
<fluwx/FluwxPlugin.h>
#import
"FluwxStringUtil.h"
#import
<fluwx/FluwxStringUtil.h>
#import
"FluwxAuthHandler.h"
#import
<fluwx/FluwxAuthHandler.h>
#import
"FluwxShareHandler.h"
#import
<fluwx/FluwxShareHandler.h>
#import
"FluwxDelegate.h"
#import
<fluwx/FluwxDelegate.h>
#import <WXApi.h>
#import <WXApi.h>
#import <WXApiObject.h>
#import <WXApiObject.h>
@interface
FluwxPlugin
()
<
WXApiDelegate
>
@interface
FluwxPlugin
()
<
WXApiDelegate
>
...
...
ios/Classes/FluwxShareHandler.m
浏览文件 @
4ecee440
...
@@ -2,11 +2,11 @@
...
@@ -2,11 +2,11 @@
// Created by mo on 2020/3/7.
// Created by mo on 2020/3/7.
//
//
#import
"FluwxShareHandler.h"
#import
<fluwx/FluwxShareHandler.h>
#import
"WXApiRequestHandler.h"
#import
<fluwx/WXApiRequestHandler.h>
#import
"FluwxStringUtil.h"
#import
<fluwx/FluwxStringUtil.h>
#import
"NSStringWrapper.h"
#import
<fluwx/NSStringWrapper.h>
#import
"ThumbnailHelper.h"
#import
<fluwx/ThumbnailHelper.h>
@implementation
FluwxShareHandler
@implementation
FluwxShareHandler
...
...
ios/Classes/FluwxStringUtil.m
浏览文件 @
4ecee440
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
// Created by mo on 2020/3/7.
// Created by mo on 2020/3/7.
//
//
#import
"FluwxStringUtil.h"
#import
<fluwx/FluwxStringUtil.h>
@implementation
FluwxStringUtil
@implementation
FluwxStringUtil
...
@@ -28,4 +28,4 @@
...
@@ -28,4 +28,4 @@
+
(
NSString
*
)
nilToEmpty
:(
NSString
*
)
string
{
+
(
NSString
*
)
nilToEmpty
:(
NSString
*
)
string
{
return
string
==
nil
?
@""
:
string
;
return
string
==
nil
?
@""
:
string
;
}
}
@end
@end
\ No newline at end of file
ios/Classes/NSStringWrapper.m
浏览文件 @
4ecee440
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
// Created by mo on 2020/3/8.
// Created by mo on 2020/3/8.
//
//
#import
"NSStringWrapper.h"
#import
<fluwx/NSStringWrapper.h>
@implementation
NSString
(
Wrapper
)
@implementation
NSString
(
Wrapper
)
...
...
ios/Classes/WXApiRequestHandler.m
浏览文件 @
4ecee440
...
@@ -3,10 +3,10 @@
...
@@ -3,10 +3,10 @@
//
//
#import <WXApi.h>
#import <WXApi.h>
#import
"WXApiRequestHandler.h"
#import
<fluwx/WXApiRequestHandler.h>
#import
"SendMessageToWXReq+requestWithTextOrMediaMessage.h"
#import
<fluwx/SendMessageToWXReq+requestWithTextOrMediaMessage.h>
#import
"WXMediaMessage+messageConstruct.h"
#import
<fluwx/WXMediaMessage+messageConstruct.h>
#import
"FluwxStringUtil.h"
#import
<fluwx/FluwxStringUtil.h>
#import <WXApiObject.h>
#import <WXApiObject.h>
@implementation
WXApiRequestHandler
@implementation
WXApiRequestHandler
...
...
ios/fluwx.podspec
浏览文件 @
4ecee440
...
@@ -54,12 +54,13 @@ The capability of implementing WeChat SDKs in Flutter. With Fluwx, developers ca
...
@@ -54,12 +54,13 @@ The capability of implementing WeChat SDKs in Flutter. With Fluwx, developers ca
s
.
default_subspec
=
fluwx_subspec
s
.
default_subspec
=
fluwx_subspec
pod_target_xcconfig
=
{
pod_target_xcconfig
=
{
'OTHER_LDFLAGS'
=>
'$(inherited) -ObjC -all_load
'
'OTHER_LDFLAGS'
=>
'$(inherited) -ObjC -all_load
'
,
}
}
s
.
subspec
'pay'
do
|
sp
|
s
.
subspec
'pay'
do
|
sp
|
sp
.
dependency
'WechatOpenSDK-XCFramework'
,
'~> 2.0.2'
sp
.
dependency
'WechatOpenSDK-XCFramework'
,
'~> 2.0.2'
pod_target_xcconfig
[
"OTHER_SWIFT_FLAGS"
]
=
"-Xcc -Wno-error=non-modular-include-in-framework-module"
pod_target_xcconfig
[
"OTHER_LDFLAGS"
]
=
"$(inherited) -ObjC -all_load "
if
debug_logging
if
debug_logging
pod_target_xcconfig
[
"GCC_PREPROCESSOR_DEFINITIONS"
]
=
'$(inherited) WECHAT_LOGGING=1'
pod_target_xcconfig
[
"GCC_PREPROCESSOR_DEFINITIONS"
]
=
'$(inherited) WECHAT_LOGGING=1'
else
else
...
@@ -72,6 +73,9 @@ The capability of implementing WeChat SDKs in Flutter. With Fluwx, developers ca
...
@@ -72,6 +73,9 @@ The capability of implementing WeChat SDKs in Flutter. With Fluwx, developers ca
sp
.
dependency
'OpenWeChatSDKNoPay'
,
'~> 2.0.2+1'
sp
.
dependency
'OpenWeChatSDKNoPay'
,
'~> 2.0.2+1'
sp
.
frameworks
=
'CoreGraphics'
,
'Security'
,
'WebKit'
sp
.
frameworks
=
'CoreGraphics'
,
'Security'
,
'WebKit'
sp
.
libraries
=
'c++'
,
'z'
,
'sqlite3.0'
sp
.
libraries
=
'c++'
,
'z'
,
'sqlite3.0'
pod_target_xcconfig
[
"OTHER_SWIFT_FLAGS"
]
=
"-Xcc -Wno-error=non-modular-include-in-framework-module"
pod_target_xcconfig
[
"OTHER_LDFLAGS"
]
=
"$(inherited) -ObjC -all_load "
if
debug_logging
if
debug_logging
pod_target_xcconfig
[
"GCC_PREPROCESSOR_DEFINITIONS"
]
=
'$(inherited) NO_PAY=1 WECHAT_LOGGING=1'
pod_target_xcconfig
[
"GCC_PREPROCESSOR_DEFINITIONS"
]
=
'$(inherited) NO_PAY=1 WECHAT_LOGGING=1'
else
else
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论