File tree Expand file tree Collapse file tree 8 files changed +19
-8
lines changed
InAppMessagingDisplay/Example Expand file tree Collapse file tree 8 files changed +19
-8
lines changed Original file line number Diff line number Diff line change 3
3
#source 'https://github.com/CocoaPods/Specs.git'
4
4
5
5
# Comment the following line to use the CocoaPods master repo instead.
6
- source 'https://cdn.jsdelivr.net/cocoa/'
6
+ # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
7
+ # source 'https://cdn.jsdelivr.net/cocoa/'
7
8
8
9
use_frameworks!
9
10
Original file line number Diff line number Diff line change 3
3
#source 'https://github.com/CocoaPods/Specs.git'
4
4
5
5
# Comment the following line to use the CocoaPods master repo instead.
6
- source 'https://cdn.jsdelivr.net/cocoa/'
6
+ # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
7
+ # source 'https://cdn.jsdelivr.net/cocoa/'
7
8
8
9
use_frameworks!
9
10
Original file line number Diff line number Diff line change 3
3
#source 'https://github.com/CocoaPods/Specs.git'
4
4
5
5
# Comment the following line to use the CocoaPods master repo instead.
6
- source 'https://cdn.jsdelivr.net/cocoa/'
6
+ # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
7
+ # source 'https://cdn.jsdelivr.net/cocoa/'
7
8
8
9
use_frameworks!
9
10
Original file line number Diff line number Diff line change 1
1
use_frameworks!
2
2
3
3
# Comment the following line to use the CocoaPods master repo instead.
4
- source 'https://cdn.jsdelivr.net/cocoa/'
4
+ # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
5
+ # source 'https://cdn.jsdelivr.net/cocoa/'
5
6
6
7
pod 'FirebaseAnalytics'
7
8
pod 'FirebaseCore' , :path => '../..'
Original file line number Diff line number Diff line change 1
1
# Comment the following line to use the CocoaPods master repo instead.
2
- source 'https://cdn.jsdelivr.net/cocoa/'
2
+ # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
3
+ # source 'https://cdn.jsdelivr.net/cocoa/'
3
4
4
5
use_frameworks!
5
6
Original file line number Diff line number Diff line change 2
2
# platform :ios, '9.0'
3
3
4
4
# Comment the following line to use the CocoaPods master repo instead.
5
- source 'https://cdn.jsdelivr.net/cocoa/'
5
+ # Disabled. See https://github.com/firebase/firebase-ios-sdk/issues/3165
6
+ # source 'https://cdn.jsdelivr.net/cocoa/'
6
7
7
8
target 'SymbolCollisionTest' do
8
9
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ function install_secrets() {
48
48
49
49
function pod_gen() {
50
50
# Call pod gen with a podspec and additonal optional arguments.
51
- bundle exec pod gen --local-sources=./ --sources=https://cdn.jsdelivr.net/cocoa/ " $@ "
51
+ # Disabled CDN. See https://github.com/firebase/firebase-ios-sdk/issues/3165
52
+ # bundle exec pod gen --local-sources=./ --sources=https://cdn.jsdelivr.net/cocoa/ "$@"
53
+ bundle exec pod gen --local-sources=./ " $@ "
52
54
}
53
55
54
56
case " $PROJECT -$PLATFORM -$METHOD " in
Original file line number Diff line number Diff line change @@ -38,7 +38,9 @@ def main(args)
38
38
exit ( 1 )
39
39
end
40
40
41
- command = %w( bundle exec pod lib lint --sources=https://cdn.jsdelivr.net/cocoa/ )
41
+ # Disabled CDN. See https://github.com/firebase/firebase-ios-sdk/issues/3165
42
+ # command = %w(bundle exec pod lib lint --sources=https://cdn.jsdelivr.net/cocoa/)
43
+ command = %w( bundle exec pod lib lint )
42
44
43
45
# Figure out which dependencies are local
44
46
podspec_file = args [ 0 ]
@@ -48,6 +50,7 @@ def main(args)
48
50
49
51
command . push ( *args )
50
52
puts command . join ( ' ' )
53
+ exec ( 'bundle exec pod repo update' )
51
54
exec ( *command )
52
55
end
53
56
You can’t perform that action at this time.
0 commit comments