Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
d4041e53
Commit
d4041e53
authored
Jul 23, 2013
by
Eloy Durán
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1217 from amolloy/DontStripInstalledProduct
Set STRIP_INSTALLED_PRODUCT=NO in the Pods Xcode project
parents
a497bb16
a1428d00
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
27 additions
and
0 deletions
+27
-0
CHANGELOG.md
CHANGELOG.md
+2
-0
installer.rb
lib/cocoapods/installer.rb
+1
-0
Pods.xcodeproj.yaml
...ntegration/install_add_pod/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...n/install_custom_workspace/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...on/install_external_source/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...ation/install_local_source/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...n/install_multiple_targets/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
spec/integration/install_new/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
.../install_podfile_callbacks/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...ntegration/install_podspec/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...gration/install_remove_pod/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...ion/install_spec_callbacks/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
...tegration/install_subspecs/after/Pods/Pods.xcodeproj.yaml
+2
-0
Pods.xcodeproj.yaml
spec/integration/update/after/Pods/Pods.xcodeproj.yaml
+2
-0
No files found.
CHANGELOG.md
View file @
d4041e53
...
...
@@ -18,6 +18,8 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
*
Fixed issue with
`pod push`
failing when the podspec is unchanged. It will now
report
`[No change] ExamplePod (0.1.0)`
and continue to push other podspecs if
they exist.
[
#1199
](
https://github.com/CocoaPods/CocoaPods/pull/1199
)
*
Set STRIP_INSTALLED_PRODUCT = NO in the generated Pods project. This allows
Xcode to include symbols from CocoaPods in dSYMs during Archive builds.
*
Ensure the resource script doesn’t fail due to the resources list file not
existing when trying to delete it.
...
...
lib/cocoapods/installer.rb
View file @
d4041e53
...
...
@@ -296,6 +296,7 @@ module Pod
@pods_project
.
build_configurations
.
each
do
|
build_configuration
|
build_configuration
.
build_settings
[
'MACOSX_DEPLOYMENT_TARGET'
]
=
osx_deployment_target
.
to_s
if
osx_deployment_target
build_configuration
.
build_settings
[
'IPHONEOS_DEPLOYMENT_TARGET'
]
=
ios_deployment_target
.
to_s
if
ios_deployment_target
build_configuration
.
build_settings
[
'STRIP_INSTALLED_PRODUCT'
]
=
'NO'
end
end
end
...
...
spec/integration/install_add_pod/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -217,7 +217,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_custom_workspace/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -276,7 +276,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_external_source/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -153,7 +153,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
4.3'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
4.3'
spec/integration/install_local_source/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -148,7 +148,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
4.3'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
4.3'
spec/integration/install_multiple_targets/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -473,7 +473,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_new/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -148,7 +148,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_podfile_callbacks/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -150,7 +150,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_podspec/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -148,7 +148,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_remove_pod/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -148,7 +148,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_spec_callbacks/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -152,7 +152,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
spec/integration/install_subspecs/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -286,9 +286,11 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
4.3'
MACOSX_DEPLOYMENT_TARGET
:
'
10.6'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
4.3'
MACOSX_DEPLOYMENT_TARGET
:
'
10.6'
spec/integration/update/after/Pods/Pods.xcodeproj.yaml
View file @
d4041e53
...
...
@@ -148,7 +148,9 @@ Targets:
Build Configurations
:
-
Release
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
-
Debug
:
Build Settings
:
STRIP_INSTALLED_PRODUCT
:
'
NO'
IPHONEOS_DEPLOYMENT_TARGET
:
'
6.0'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment