-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix Xcode11 dependency libc++ and support module
- Loading branch information
1 parent
ac3aa2f
commit 7dc411d
Showing
8 changed files
with
102 additions
and
87 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
Large diffs are not rendered by default.
Oops, something went wrong.
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,9 @@ | ||
// | ||
// File.swift | ||
// XXShield_Example | ||
// | ||
// Created by nero on 2019/12/13. | ||
// Copyright © 2019 ValiantCat. All rights reserved. | ||
// | ||
|
||
import Foundation |
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,4 @@ | ||
// | ||
// Use this file to import your target's public headers that you would like to expose to Swift. | ||
// | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'XXShield' | ||
s.version = '2.2.0' | ||
s.version = '2.3.0' | ||
s.summary = 'Avoid Crash' | ||
s.description = <<-DESC | ||
1. unrecoginzed Selector Crash | ||
|
@@ -15,8 +15,8 @@ DESC | |
s.license = { :type => 'Apache', :file => 'LICENSE' } | ||
s.author = { 'ValiantCat' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/ValiantCat/XXShield.git', :tag => s.version.to_s } | ||
s.platform = :ios, '7.0' | ||
s.ios.deployment_target = '7.0' | ||
s.platform = :ios, '9.0' | ||
s.ios.deployment_target = '9.0' | ||
s.module_map = 'XXShield/XXShield.modulemap' | ||
s.public_header_files = 'XXShield/Classes/*.h' | ||
s.private_header_files = 'XXShield/Classes/template/*.h' | ||
|
@@ -34,8 +34,10 @@ DESC | |
'XXShield/Classes/DanglingPointerShield/ForwordingCenterForDanglingPoint.m', | ||
'XXShield/Classes/DanglingPointerShield/XXDanglingPonterClassService.m' | ||
] | ||
s.libraries = 'c++' | ||
s.pod_target_xcconfig = { | ||
'CLANG_WARN_STRICT_PROTOTYPES' => 'NO', | ||
'DEFINES_MODULE' => 'YES' | ||
# 'SWIFT_VERSION' => '' | ||
} | ||
|
||
|