We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358a579 commit ec98e91Copy full SHA for ec98e91
iOSNote/podBundleTargetError.md
@@ -0,0 +1,33 @@
1
+## 更新Xcode14后工程报错解决方案(Pod)
2
+
3
+> Pod工程中的Bundle target签名报错
4
5
+- 开启`generate_multiple_pod_projects` 参数工程
6
7
+```
8
+post_install do |installer|
9
+ installer.generated_projects.each do |project|
10
+ project.targets.each do |target|
11
+ target.build_configurations.each do |config|
12
+ config.build_settings['CODE_SIGN_IDENTITY'] = ''
13
+ end
14
15
16
+end
17
18
19
20
+- 未开启`generate_multiple_pod_projects` 参数工程
21
22
23
24
25
+ installer.pods_project.targets.each do |target|
26
27
28
29
30
31
32
33
0 commit comments