mirror of
https://github.com/easychen/pushdeer.git
synced 2024-11-14 14:29:23 +08:00
2136883536
支持微信登录, 支持同时绑定微信和苹果账号; 解决markdown标题文字显示不全的问题; markdown中的链接支持内嵌浏览器打开; 增加是否使用内置浏览器的设置项; 改名输入框, 失去焦点的时候也保存;
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
# Uncomment the next line to define a global platform for your project
|
|
platform :ios, '14.0'
|
|
|
|
load 'remove_unsupported_libraries.rb'
|
|
|
|
# Comment the next line if you don't want to use dynamic frameworks
|
|
use_frameworks!
|
|
|
|
def commonPods
|
|
# Pods for common
|
|
pod 'Moya', '~> 15.0'
|
|
pod 'SDWebImageSwiftUI', '~> 2.0.2'
|
|
pod 'KRProgressHUD', '~> 3.4.7'
|
|
pod 'IQKeyboardManagerSwift', '~> 6.5.9'
|
|
end
|
|
|
|
target 'PushDeer' do
|
|
commonPods
|
|
# Pods for PushDeer
|
|
# PushDeer 独享的依赖, Clip 不支持
|
|
pod 'WechatOpenSDK', '~> 1.8.7.1'
|
|
pod 'WoodPeckeriOS', :configurations => ['Debug']
|
|
end
|
|
|
|
target 'PushDeerClip' do
|
|
commonPods
|
|
# Pods for PushDeerClip
|
|
|
|
end
|
|
|
|
# define unsupported pods
|
|
def unsupported_pods
|
|
# macCatalyst 不支持的库
|
|
['WoodPeckeriOS', 'WechatOpenSDK']
|
|
end
|
|
|
|
def supported_pods
|
|
# macCatalyst 支持的库
|
|
['Moya', 'SDWebImageSwiftUI', 'KRProgressHUD', 'IQKeyboardManagerSwift']
|
|
end
|
|
|
|
# install all pods except unsupported ones
|
|
post_install do |installer|
|
|
$verbose = false # remove or set to false to avoid printing
|
|
installer.configure_support_catalyst(supported_pods, unsupported_pods)
|
|
end
|