Skip to content

Commit 02488e9

Browse files
authored
Remove GoogleUtilities from repo (#7315)
1 parent 1a92398 commit 02488e9

File tree

125 files changed

+64
-17549
lines changed

Some content is hidden

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

125 files changed

+64
-17549
lines changed

.github/workflows/google-utilities.yml

Lines changed: 0 additions & 89 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -130,36 +130,6 @@ jobs:
130130
script:
131131
- travis_retry ./scripts/if_changed.sh ./scripts/build.sh $PROJECT $PLATFORM $METHOD
132132

133-
- stage: test
134-
env:
135-
- PROJECT=GoogleUtilities METHOD=pod-lib-lint
136-
script:
137-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec
138-
139-
- stage: test
140-
env:
141-
- PROJECT=GoogleUtilities METHOD=pod-lib-lint
142-
script:
143-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --platforms=ios
144-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --platforms=tvos
145-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --platforms=macos
146-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-static-frameworks --platforms=ios
147-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-static-frameworks --platforms=tvos
148-
- travis_retry ./scripts/if_changed.sh ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-static-frameworks --platforms=macos
149-
150-
- stage: test
151-
if: type = cron
152-
env:
153-
- PROJECT=GoogleUtilitiesCron METHOD=pod-lib-lint
154-
script:
155-
156-
- travis_retry ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-libraries --platforms=ios --skip-tests
157-
- travis_retry ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-libraries --platforms=tvos --skip-tests
158-
- travis_retry ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-libraries --platforms=macos --skip-tests
159-
- travis_retry ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-modular-headers --platforms=ios
160-
- travis_retry ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-modular-headers --platforms=tvos
161-
- travis_retry ./scripts/pod_lib_lint.rb GoogleUtilities.podspec --use-modular-headers --platforms=macos
162-
163133
- stage: test
164134
env:
165135
- PROJECT=GoogleUtilitiesComponents METHOD=pod-lib-lint

CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_frameworks/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ target 'CocoapodsIntegrationTest' do
2121
pod 'FirebasePerformance', :path => '../'
2222
pod 'FirebaseStorage', :path => '../'
2323
pod 'GoogleDataTransport', :path => '../'
24-
pod 'GoogleUtilities', :path => '../'
2524
end
2625

2726
# Using the new speed-enhancing features available with CocoaPods 1.7+

CocoapodsIntegrationTest/TestEnvironments/Cocoapods_multiprojects_staticLibs/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ target 'CocoapodsIntegrationTest' do
1919
pod 'FirebasePerformance', :path => '../'
2020
pod 'FirebaseStorage', :path => '../'
2121
pod 'GoogleDataTransport', :path => '../'
22-
pod 'GoogleUtilities', :path => '../'
2322
end
2423

2524
# Using the new speed-enhancing features available with CocoaPods 1.7+

CoreOnly/Tests/FirebasePodTest/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ target 'FirebasePodTest' do
3030
# Get dependent pods from the repo also
3131
pod 'FirebaseCoreDiagnostics', :path => '../../../'
3232
pod 'GoogleDataTransport', :path => '../../../'
33-
pod 'GoogleUtilities', :path => '../../../'
3433

3534
pod 'FirebaseAnalytics' # Analytics is not open source
3635
end

Dangerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ def labelsForModifiedFiles()
5353
labels.push("api: segmentation") if @has_segmentation_changes
5454
labels.push("api: storage") if @has_storage_changes
5555
labels.push("GoogleDataTransport") if @has_gdt_changes
56-
labels.push("GoogleUtilities") if @has_googleutilities_changes
5756
labels.push("release-tooling") if @has_releasetooling_changes
5857
labels.push("public-api-change") if @has_api_changes
5958
return labels
@@ -113,7 +112,6 @@ has_license_changes = didModify(["LICENSE"])
113112

114113
@has_gdt_changes = hasChangesIn(["GoogleDataTransport/"])
115114
@has_gdt_api_changes = hasChangesIn("GoogleDataTransport/GDTCORLibrary/Public")
116-
@has_googleutilities_changes = hasChangesIn("GoogleUtilities/")
117115
@has_releasetooling_changes = hasChangesIn("ReleaseTooling/")
118116

119117
# Convenient flag for all API changes.

Example/watchOSSample/Podfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
source 'https://github.com/firebase/SpecsStaging.git'
2+
source 'https://cdn.cocoapods.org/'
3+
14
use_frameworks!
25

36
target 'SampleWatchAppWatchKitExtension' do
47
platform :watchos, '6.0'
58

69
pod 'FirebaseCore', :path => '../../'
7-
pod 'GoogleUtilities', :path => '../../'
810
pod 'FirebaseMessaging', :path => '../../'
911
pod 'FirebaseInstanceID', :path => '../../'
1012
pod 'FirebaseCoreDiagnostics', :path => '../../'

FirebaseAuth/Tests/Sample/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ target 'AuthSample' do
1212
pod 'FirebaseCore', :path => '../../../'
1313
pod 'FirebaseCoreDiagnostics', :path => '../../../'
1414
pod 'GoogleDataTransport', :path => '../../../'
15-
pod 'GoogleUtilities', :path => '../../../'
1615
pod 'FirebaseAuth', :path => '../../../', :testspecs => ['unit']
1716
pod 'FirebaseInstallations', :path => '../../..'
1817
pod 'FirebaseInstanceID', :path => '../../..'
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
source 'https://github.com/firebase/SpecsStaging.git'
2+
source 'https://cdn.cocoapods.org/'
3+
14
target 'FDLBuilderTestAppObjC' do
25
platform :ios, '10.0'
36
use_frameworks!
47

58
pod 'FirebaseCore', :path => '../../../'
69
pod 'FirebaseCoreDiagnostics', :path => '../../../'
710
pod 'GoogleDataTransport', :path => '../../../'
8-
pod 'GoogleUtilities', :path => '../../../'
911
pod 'FirebaseDynamicLinks', :path => '../../../'
1012
end

FirebaseInAppMessaging/Tests/Integration/DefaultUITestApp/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ pod 'FirebaseCore', :path => '../../../..'
77
pod 'FirebaseInstallations', :path => '../../../..'
88
pod 'FirebaseCoreDiagnostics', :path => '../../../..'
99
pod 'GoogleDataTransport', :path => '../../../..'
10-
pod 'GoogleUtilities', :path => '../../../..'
1110
pod 'FirebaseABTesting', :path => '../../../..'
1211

1312
target 'FiamDisplaySwiftExample' do

0 commit comments

Comments
 (0)