Skip to content

Commit 729260a

Browse files
Troubleshooting a 'pod lib lint' error
1 parent 4558f1a commit 729260a

File tree

107 files changed

+22332
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+22332
-41
lines changed

Podfile

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
platform :ios, '15.0'
2+
3+
project 'RMQClient.xcodeproj'
4+
5+
target 'MemoryTest' do
6+
use_frameworks!
7+
end
8+
9+
target 'RMQClient' do
10+
use_frameworks!
11+
12+
pod "CocoaAsyncSocket", "~> 7.6"
13+
pod "JKVValue", "~> 1.3"
14+
15+
target 'RMQClientIntegrationTests' do
16+
end
17+
18+
target 'RMQClientTests' do
19+
end
20+
end
21+
22+
post_install do |installer|
23+
installer.pods_project.targets.each do |target|
24+
target.build_configurations.each do |config|
25+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
26+
27+
config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = "NO"
28+
end
29+
end
30+
end

Podfile.lock

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
PODS:
2+
- CocoaAsyncSocket (7.6.5)
3+
- JKVValue (1.3.3)
4+
5+
DEPENDENCIES:
6+
- CocoaAsyncSocket (~> 7.6)
7+
- JKVValue (~> 1.3)
8+
9+
SPEC REPOS:
10+
trunk:
11+
- CocoaAsyncSocket
12+
- JKVValue
13+
14+
SPEC CHECKSUMS:
15+
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
16+
JKVValue: d7941071b1cf9ba35c194fd40bcf4c4d9b5462e9
17+
18+
PODFILE CHECKSUM: 6ef8faad0febb311890414d7da2c0fc8816f7593
19+
20+
COCOAPODS: 1.15.2

Pods/CocoaAsyncSocket/LICENSE.txt

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pods/CocoaAsyncSocket/README.markdown

Lines changed: 121 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)