Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds subspec for static library workaround (2) #14

Merged
merged 6 commits into from
Nov 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Without use_frameworks!

target 'Segment-GoogleAnalytics_Example' do
# Use default subspec
pod 'Segment-GoogleAnalytics', :path => '../'
# Use default `GoogleIDFASupport` explicitly
# pod 'Segment-GoogleAnalytics/GoogleIDFASupport', :path => '../'
# Use only `Segment-GoogleAnalytics/Core`
# pod 'Segment-GoogleAnalytics/Core', :path => '../'

target 'Segment-GoogleAnalytics_Tests' do
inherit! :search_paths
Expand All @@ -9,3 +16,25 @@ target 'Segment-GoogleAnalytics_Example' do
pod 'Expecta'
end
end



## With use_frameworks!
# Use only `Segment-GoogleAnalytics/StaticLibWorkaround`

#use_frameworks!
#
#target 'Segment-GoogleAnalytics_Example' do
# pod 'Segment-GoogleAnalytics/StaticLibWorkaround', :path => '../'
# pod 'GoogleAnalytics'
# pod 'GoogleIDFASupport'
#
# target 'Segment-GoogleAnalytics_Tests' do
# inherit! :search_paths
#
# pod 'OCMockito'
# pod 'Specta'
# pod 'Expecta'
# end
#end
#
16 changes: 7 additions & 9 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
PODS:
- Analytics (3.2.2)
- Analytics (3.5.2)
- Expecta (1.0.5)
- GoogleAnalytics (3.14.0)
- GoogleAnalytics (3.17.0)
- GoogleIDFASupport (3.14.0)
- OCHamcrest (6.0.0)
- OCMockito (4.0.1):
- OCHamcrest (~> 6.0)
- Segment-GoogleAnalytics (1.1.4):
- Analytics (~> 3.0)
- GoogleAnalytics (~> 3.14)
- Segment-GoogleAnalytics/Core (= 1.1.4)
- Segment-GoogleAnalytics/GoogleIDFASupport (= 1.1.4)
- Segment-GoogleAnalytics/Core (1.1.4):
- Analytics (~> 3.0)
- GoogleAnalytics (~> 3.14)
- Segment-GoogleAnalytics/GoogleIDFASupport (1.1.4):
- Analytics (~> 3.0)
- GoogleAnalytics (~> 3.14)
- GoogleIDFASupport (~> 3.14)
- Segment-GoogleAnalytics/Core
- Specta (1.0.5)

DEPENDENCIES:
Expand All @@ -31,15 +29,15 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
Analytics: d7a22ef3048638755e74337f4c31eba35be680d3
Analytics: 0bf6c9302dcde2bdd9fc410ef2685ad8a1c804dd
Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe
GoogleAnalytics: 9be1afdb8deeac4bb5f13ca7f7d3b9db2a1f43dc
GoogleAnalytics: f42cc53a87a51fe94334821868d9c8481ff47a7b
GoogleIDFASupport: aaf8c10bd429abb1c15349d5252244f5eda8ead1
OCHamcrest: fc8ab38149b97df8db8029a3f2157c951bf9081d
OCMockito: 62ddc6afff6a883f2864d51224b1dfdc0e9a7df7
Segment-GoogleAnalytics: ca4f3789b8904492c879113f62ce461a9a7b1272
Segment-GoogleAnalytics: bfc1df1cda4439e17d539f02c27c4fb44dda2cea
Specta: ac94d110b865115fe60ff2c6d7281053c6f8e8a2

PODFILE CHECKSUM: 5f64edba878988a2587daa3a6640a7a9efdec370
PODFILE CHECKSUM: 5119a05f3a6f1083b18fd3de531ff1231002fbb1

COCOAPODS: 1.1.0
24 changes: 24 additions & 0 deletions Example/Pods/Analytics/Analytics/Classes/Crypto/SEGAES256Crypto.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

148 changes: 148 additions & 0 deletions Example/Pods/Analytics/Analytics/Classes/Crypto/SEGAES256Crypto.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions Example/Pods/Analytics/Analytics/Classes/Crypto/SEGCrypto.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading