bang590 / JSPatch

JSPatch bridge Objective-C and Javascript using the Objective-C runtime. You can call any Objective-C class and method in JavaScript by just including a small engine. JSPatch is generally used to hotfix iOS App.
MIT License
11.36k stars 2.24k forks source link

cocoapods方式引起的No code signature found问题 #633

Open zlyunduan opened 8 years ago

zlyunduan commented 8 years ago

我采用了以下方式也没能解决, 在profile底部添加: post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = "" config.build_settings['CODE_SIGNING_REQUIRED'] = "NO" config.build_settings['CODE_SIGNING_ALLOWED'] = "NO" end end end 这个问题如何在基于cocopods引入方式上解决。

AnOrphanInTheBeautyfulWorld commented 7 years ago

遇到了同样的问题,目前只能采取手动管理了。。。@zlyunduan