File tree Expand file tree Collapse file tree 3 files changed +9
-8
lines changed
ReleaseTooling/Sources/ZipBuilder Expand file tree Collapse file tree 3 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 7
7
- [ removed] ** Breaking change** : Removed the following unused API.
8
8
- ` Options.androidClientID `
9
9
- ` Options.trackingID `
10
+ - [ removed] ** Breaking change** : Firebase's zip and Carthage distributions of
11
+ the Google Mobile Ads SDK has been removed. Instead, the Google
12
+ Mobile Ads SDK binary distribution should be accessed from
13
+ https://developers.google.com/admob/ios/download . Note that _ any existing
14
+ versions of the Firebase zip or Carthage distributions will
15
+ continue to be available and functional_ . Learn more about this change
16
+ in our FAQ: https://firebase.google.com/support/faq/#admob-which-sdk . (#14408 )
10
17
- [ removed] The deprecated Vertex AI in Firebase SDK (` FirebaseVertexAI ` ) has
11
18
been removed. It has been replaced by the Firebase AI Logic
12
19
SDK (` FirebaseAI ` ) to
Original file line number Diff line number Diff line change @@ -319,8 +319,6 @@ extension CarthageUtils {
319
319
var jsonFileName : String
320
320
if product == " GoogleSignIn " {
321
321
jsonFileName = " FirebaseGoogleSignIn "
322
- } else if product == " Google-Mobile-Ads-SDK " {
323
- jsonFileName = " FirebaseAdMob "
324
322
} else {
325
323
jsonFileName = product
326
324
}
Original file line number Diff line number Diff line change @@ -369,11 +369,8 @@ struct ZipBuilder {
369
369
guard !podsToInstall. isEmpty else {
370
370
fatalError ( " Failed to find versions for Firebase release " )
371
371
}
372
- // We don't release Google-Mobile-Ads-SDK and GoogleSignIn, but we include their latest
372
+ // We don't release GoogleSignIn, but we include its latest
373
373
// version for convenience in the Zip and Carthage builds.
374
- podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " Google-Mobile-Ads-SDK " ,
375
- version: nil ,
376
- platforms: [ " ios " ] ) )
377
374
podsToInstall. append ( CocoaPodUtils . VersionedPod ( name: " GoogleSignIn " ,
378
375
version: nil ,
379
376
platforms: [ " ios " ] ) )
@@ -486,8 +483,7 @@ struct ZipBuilder {
486
483
487
484
// Skip Analytics and the pods bundled with it.
488
485
let remainingPods = installedPods. filter {
489
- $0. key == " Google-Mobile-Ads-SDK " ||
490
- $0. key == " GoogleSignIn " ||
486
+ $0. key == " GoogleSignIn " ||
491
487
( firebaseZipPods. contains ( $0. key) &&
492
488
$0. key != " FirebaseAnalytics " &&
493
489
$0. key != " Firebase " &&
You can’t perform that action at this time.
0 commit comments