Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
UniMPSDK-iOS
提交
65747661
U
UniMPSDK-iOS
项目概览
DCloud
/
UniMPSDK-iOS
通知
83
Star
5
Fork
4
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
12
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
UniMPSDK-iOS
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
12
Issue
12
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
65747661
编写于
3月 27, 2024
作者:
DCloud_iOS_WZT
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
支付模块 新增自动写入配置脚本
上级
5bae29e1
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
52 addition
and
1 deletion
+52
-1
FindLargeFiles.sh
FindLargeFiles.sh
+21
-0
HelloUniMPDemo/Podfile
HelloUniMPDemo/Podfile
+31
-1
未找到文件。
FindLargeFiles.sh
0 → 100644
浏览文件 @
65747661
#!/bin/bash
add_large_files_to_lfs
()
{
local
directory
=
"
$1
"
for
file
in
"
$directory
"
/
*
;
do
if
[
-f
"
$file
"
]
;
then
file_size
=
$(
stat
-f
%z
"
$file
"
)
if
[
"
$file_size
"
-gt
$((
5
*
1024
*
1024
))
]
;
then
git lfs track
"
$file
"
fi
elif
[
-d
"
$file
"
]
;
then
add_large_files_to_lfs
"
$file
"
# 递归调用,继续查找子目录
fi
done
}
directory_path
=
"UniMPSDK"
# 添加大文件到 Git LFS
add_large_files_to_lfs
"
$directory_path
"
HelloUniMPDemo/Podfile
浏览文件 @
65747661
...
...
@@ -65,6 +65,36 @@ target 'HelloUniMPDemo' do
# pod 'FBSDKLoginKit','16.2.1' ##使用Oauth-Facebook 时需添加该库
# pod 'Stripe','23.18.2' ##使用Payment-Stripe 时需添加该库
# pod 'PayPalCheckout','1.2.0' ##使用Payment-Paypal 时需添加该库
# 如果添加了支付模块 请添加如下脚本
# post_install do |installer|
# project_root = installer.sandbox.root
# featurePlist_PATH = File.join(project_root, 'unimp/UniMPSDK/Core/Resources/PandoraApi.bundle/feature.plist')
# spec_names = {
# 'unimp/Payment-IAP' => 'Add :Payment:extend:appleiap string PGPlatbyIAP',
# 'unimp/Payment-AliPay' => 'Add :Payment:extend:alix string PGAlixPay',
# 'unimp/Payment-Wechat' => 'Add :Payment:extend:weixin string PGWXPay',
# 'unimp/Payment-Stripe' => 'Add :Payment:extend:stripe string PGStripePay',
# 'unimp/Payment-Paypal' => 'Add :Payment:extend:paypal string PGPaypalPay'
# }
# has_specs = Hash.new(false)
# installer.pod_targets.each do |target|
# if target.name == 'unimp'
# target.specs.each do |spec|
# has_specs[spec.name] = true if spec_names.key?(spec.name)
# end
# end
# end
# has_specs.each do |spec_name, has|
# if has == true
# str = spec_names[spec_name]
# system("/usr/libexec/PlistBuddy -c '#{str}' #{featurePlist_PATH}")
# end
# end
# end
end
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录