-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated SDK version and added pod post install script (#42)
updated sdk version added pod instructions to avoid code signin for ios sdk bundle
- Loading branch information
1 parent
f12fe6b
commit d4ff460
Showing
6 changed files
with
19 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
def blueshift_sdk_post_install(installer) | ||
target_name = 'BlueShift-iOS-SDK-BlueShift-iOS-SDK_BlueShift_iOS_SDK' | ||
installer.pods_project.targets.each do |target| | ||
if target.name == target_name | ||
target.build_configurations.each do |config| | ||
config.build_settings['CODE_SIGNING_REQUIRED'] = 'NO' | ||
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO' | ||
end | ||
end | ||
end | ||
end |