Skip to content

Commit 853e6e9

Browse files
google-ima-devrel-botIMA Developer Relations
authored andcommitted
Removes explicit CocoaPods source from Podfiles.
PiperOrigin-RevId: 820380727
1 parent 691d898 commit 853e6e9

File tree

11 files changed

+2
-20
lines changed

11 files changed

+2
-20
lines changed

Objective-C/AdvancedExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '17'
42

53
target "AdvancedExample" do

Objective-C/BasicExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '14'
42

53
target 'BasicExample' do

Objective-C/PodServingExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '14'
42

53
target 'PodServingExample' do

Objective-C/Snippets/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '14'
42

53
target 'Snippets' do

Objective-C/Snippets/Snippets/SecureSignalsSnippet.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ @implementation SecureSignalsSnippet
1212
- (void)setSecureSignals:(IMAStreamRequest *)streamRequest {
1313
// [START make_secure_signals_stream_request]
1414
IMASecureSignals *signals =
15-
[[IMASecureSignals alloc] initWithCustomData:@"My encoded signal string"];
15+
[[IMASecureSignals alloc] initWithCustomData:@"ENCODED_SIGNAL_STRING"];
1616
streamRequest.secureSignals = signals;
1717
// [END make_secure_signals_stream_request]
1818
}

Objective-C/VideoStitcherExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '14'
42

53
target 'VideoStitcherExample' do

Swift/BasicExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '17'
42
project 'BasicExample.xcodeproj'
53

Swift/PodServingExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '17'
42
project 'PodServingExample.xcodeproj'
53

Swift/SGAIClientSideExample/Podfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
2-
31
platform :ios, '18'
42
project 'SGAIClientSideExample.xcodeproj'
53

Swift/Snippets/app/SecureSignalsSnippet.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class SecureSignalsSnippet: NSObject {
1919

2020
func setSecureSignals(streamRequest: IMAStreamRequest) {
2121
// [START make_secure_signals_stream_request]
22-
let signals = IMASecureSignals(customData: "My encoded signal string")
22+
let signals = IMASecureSignals(customData: "ENCODED_SIGNAL_STRING")
2323
streamRequest.secureSignals = signals
2424
// [END make_secure_signals_stream_request]
2525
}

0 commit comments

Comments
 (0)