| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6a05416 commit 52db94f
46 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ def firebaseDependenciesMap = [ | |||
| 36 | 36 | 'remote_config' : ['com.google.firebase:firebase-config'], | |
| 37 | 37 | 'storage' : ['com.google.firebase:firebase-storage'], | |
| 38 | 38 | 'testlab' : [], | |
| 39 | - 'ump' : ['com.google.android.ump:user-messaging-platform:3.2.0'] | ||
| 39 | + 'ump' : ['com.google.android.ump:user-messaging-platform:4.0.0'] | ||
| 40 | 40 | ] | |
| 41 | 41 | ||
| 42 | 42 | // A map of library to the gradle resources that they depend upon. | |
@@ -149,7 +149,7 @@ project.afterEvaluate { | |||
| 149 | 149 | ||
| 150 | 150 | // Add the bill-of-materials | |
| 151 | 151 | project.dependencies { | |
| 152 | - implementation platform('com.google.firebase:firebase-bom:34.4.0') | ||
| 152 | + implementation platform('com.google.firebase:firebase-bom:34.6.0') | ||
| 153 | 153 | } | |
| 154 | 154 | for (String lib : firebaseCpp.dependencies.libSet) { | |
| 155 | 155 | // Generate and include the proguard file | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,12 +5,12 @@ use_frameworks! :linkage => :static | |||
| 5 | 5 | ||
| 6 | 6 | target 'integration_test' do | |
| 7 | 7 | platform :ios, '15.0' | |
| 8 | - pod 'Firebase/Analytics', '12.4.0' | ||
| 8 | + pod 'Firebase/Analytics', '12.6.0' | ||
| 9 | 9 | end | |
| 10 | 10 | ||
| 11 | 11 | target 'integration_test_tvos' do | |
| 12 | 12 | platform :tvos, '15.0' | |
| 13 | - pod 'Firebase/Analytics', '12.4.0' | ||
| 13 | + pod 'Firebase/Analytics', '12.6.0' | ||
| 14 | 14 | end | |
| 15 | 15 | ||
| 16 | 16 | post_install do |installer| | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | // Copyright 2025 Google LLC | |
| 2 | 2 | ||
| 3 | - // Copied from Firebase Analytics iOS SDK 12.4.0. | ||
| 3 | + // Copied from Firebase Analytics iOS SDK 12.6.0. | ||
| 4 | 4 | ||
| 5 | 5 | /// @file FIREventNames.h | |
| 6 | 6 | /// | |
@@ -151,6 +151,26 @@ static NSString *const kFIREventEarnVirtualCurrency | |||
| 151 | 151 | static NSString *const kFIREventGenerateLead NS_SWIFT_NAME(AnalyticsEventGenerateLead) = | |
| 152 | 152 | @"generate_lead"; | |
| 153 | 153 | ||
| 154 | + /// In-App Purchase event. This event signifies that extra content or a subscription was purchased | ||
| 155 | + /// by a user inside an app. Note: This is different from the ecommerce purchase event. Note: If you | ||
| 156 | + /// supply the @c AnalyticsParameterValue parameter, you must also supply the | ||
| 157 | + /// @c AnalyticsParameterCurrency parameter so that revenue metrics can be computed accurately. | ||
| 158 | + /// Params: | ||
| 159 | + /// | ||
| 160 | + /// <ul> | ||
| 161 | + /// <li>@c AnalyticsParameterCurrency (String)</li> | ||
| 162 | + /// <li>@c AnalyticsParameterFreeTrial (Int) (optional)</li> | ||
| 163 | + /// <li>@c AnalyticsParameterPrice (Double) (optional)</li> | ||
| 164 | + /// <li>@c AnalyticsParameterPriceIsDiscounted (Int) (optional)</li> | ||
| 165 | + /// <li>@c AnalyticsParameterProductID (String) (optional)</li> | ||
| 166 | + /// <li>@c AnalyticsParameterProductName (String) (optional)</li> | ||
| 167 | + /// <li>@c AnalyticsParameterQuantity (Int) (optional)</li> | ||
| 168 | + /// <li>@c AnalyticsParameterSubscription (Int) (optional)</li> | ||
| 169 | + /// <li>@c AnalyticsParameterValue (Double)</li> | ||
| 170 | + /// </ul> | ||
| 171 | + static NSString *const kFIREventInAppPurchase NS_SWIFT_NAME(AnalyticsEventInAppPurchase) = | ||
| 172 | + @"in_app_purchase"; | ||
| 173 | + | ||
| 154 | 174 | /// Join Group event. Log this event when a user joins a group such as a guild, team or family. Use | |
| 155 | 175 | /// this event to analyze how popular certain groups or social features are in your app. Params: | |
| 156 | 176 | /// | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | // Copyright 2025 Google LLC | |
| 2 | 2 | ||
| 3 | - // Copied from Firebase Analytics iOS SDK 12.4.0. | ||
| 3 | + // Copied from Firebase Analytics iOS SDK 12.6.0. | ||
| 4 | 4 | ||
| 5 | 5 | /// @file FIRParameterNames.h | |
| 6 | 6 | /// | |
@@ -248,6 +248,17 @@ static NSString *const kFIRParameterExtendSession NS_SWIFT_NAME(AnalyticsParamet | |||
| 248 | 248 | static NSString *const kFIRParameterFlightNumber NS_SWIFT_NAME(AnalyticsParameterFlightNumber) = | |
| 249 | 249 | @"flight_number"; | |
| 250 | 250 | ||
| 251 | + /// Indicates if the user is on a free trial of a subscription. Specify 1 to indicate true and 0 to | ||
| 252 | + /// indicate false (Int). | ||
| 253 | + /// <pre> | ||
| 254 | + /// let params = [ | ||
| 255 | + /// AnalyticsParameterFreeTrial : 1, | ||
| 256 | + /// // ... | ||
| 257 | + /// ] | ||
| 258 | + /// </pre> | ||
| 259 | + static NSString *const kFIRParameterFreeTrial NS_SWIFT_NAME(AnalyticsParameterFreeTrial) = | ||
| 260 | + @"free_trial"; | ||
| 261 | + | ||
| 251 | 262 | /// Group/clan/guild ID (String). | |
| 252 | 263 | /// <pre> | |
| 253 | 264 | /// let params = [ | |
@@ -519,6 +530,37 @@ static NSString *const kFIRParameterPaymentType NS_SWIFT_NAME(AnalyticsParameter | |||
| 519 | 530 | /// </pre> | |
| 520 | 531 | static NSString *const kFIRParameterPrice NS_SWIFT_NAME(AnalyticsParameterPrice) = @"price"; | |
| 521 | 532 | ||
| 533 | + /// Indicates if an item's price is discounted. Specify 1 to indicate true and 0 to indicate false | ||
| 534 | + /// (Int). | ||
| 535 | + /// <pre> | ||
| 536 | + /// let params = [ | ||
| 537 | + /// AnalyticsParameterPriceIsDiscounted : 1, | ||
| 538 | + /// // ... | ||
| 539 | + /// ] | ||
| 540 | + /// </pre> | ||
| 541 | + static NSString *const kFIRParameterPriceIsDiscounted | ||
| 542 | + NS_SWIFT_NAME(AnalyticsParameterPriceIsDiscounted) = @"price_is_discounted"; | ||
| 543 | + | ||
| 544 | + /// The ID of a product (String). | ||
| 545 | + /// <pre> | ||
| 546 | + /// let params = [ | ||
| 547 | + /// AnalyticsParameterProductID : "PROD_12345", | ||
| 548 | + /// // ... | ||
| 549 | + /// ] | ||
| 550 | + /// </pre> | ||
| 551 | + static NSString *const kFIRParameterProductID NS_SWIFT_NAME(AnalyticsParameterProductID) = | ||
| 552 | + @"product_id"; | ||
| 553 | + | ||
| 554 | + /// The name of a product (String). | ||
| 555 | + /// <pre> | ||
| 556 | + /// let params = [ | ||
| 557 | + /// AnalyticsParameterProductName : "My Awesome Product", | ||
| 558 | + /// // ... | ||
| 559 | + /// ] | ||
| 560 | + /// </pre> | ||
| 561 | + static NSString *const kFIRParameterProductName NS_SWIFT_NAME(AnalyticsParameterProductName) = | ||
| 562 | + @"product_name"; | ||
| 563 | + | ||
| 522 | 564 | /// The ID of a product promotion (String). | |
| 523 | 565 | /// <pre> | |
| 524 | 566 | /// let params = [ | |
@@ -646,6 +688,17 @@ static NSString *const kFIRParameterSourcePlatform NS_SWIFT_NAME(AnalyticsParame | |||
| 646 | 688 | static NSString *const kFIRParameterStartDate NS_SWIFT_NAME(AnalyticsParameterStartDate) = | |
| 647 | 689 | @"start_date"; | |
| 648 | 690 | ||
| 691 | + /// Indicates if the purchase is a subscription. Specify 1 to indicate true and 0 to indicate false | ||
| 692 | + /// (Int). | ||
| 693 | + /// <pre> | ||
| 694 | + /// let params = [ | ||
| 695 | + /// AnalyticsParameterSubscription : 1, | ||
| 696 | + /// // ... | ||
| 697 | + /// ] | ||
| 698 | + /// </pre> | ||
| 699 | + static NSString *const kFIRParameterSubscription NS_SWIFT_NAME(AnalyticsParameterSubscription) = | ||
| 700 | + @"subscription"; | ||
| 701 | + | ||
| 649 | 702 | /// The result of an operation. Specify 1 to indicate success and 0 to indicate failure (Int). | |
| 650 | 703 | /// <pre> | |
| 651 | 704 | /// let params = [ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | // Copyright 2025 Google LLC | |
| 2 | 2 | ||
| 3 | - // Copied from Firebase Analytics iOS SDK 12.4.0. | ||
| 3 | + // Copied from Firebase Analytics iOS SDK 12.6.0. | ||
| 4 | 4 | ||
| 5 | 5 | /// @file FIRUserPropertyNames.h | |
| 6 | 6 | /// | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -56,7 +56,7 @@ android { | |||
| 56 | 56 | } | |
| 57 | 57 | ||
| 58 | 58 | dependencies { | |
| 59 | - implementation platform('com.google.firebase:firebase-bom:34.4.0') | ||
| 59 | + implementation platform('com.google.firebase:firebase-bom:34.6.0') | ||
| 60 | 60 | implementation 'com.google.firebase:firebase-analytics' | |
| 61 | 61 | } | |
| 62 | 62 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -59,7 +59,7 @@ android { | |||
| 59 | 59 | } | |
| 60 | 60 | ||
| 61 | 61 | dependencies { | |
| 62 | - implementation platform('com.google.firebase:firebase-bom:34.4.0') | ||
| 62 | + implementation platform('com.google.firebase:firebase-bom:34.6.0') | ||
| 63 | 63 | implementation 'com.google.firebase:firebase-analytics' | |
| 64 | 64 | implementation 'com.google.android.gms:play-services-base:18.9.0' | |
| 65 | 65 | implementation project(':app:app_resources') | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ platform :ios, '15.0' | |||
| 4 | 4 | use_frameworks! :linkage => :static | |
| 5 | 5 | ||
| 6 | 6 | target 'integration_test' do | |
| 7 | - pod 'Firebase/Analytics', '12.4.0' | ||
| 7 | + pod 'Firebase/Analytics', '12.6.0' | ||
| 8 | 8 | end | |
| 9 | 9 | ||
| 10 | 10 | post_install do |installer| | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -55,7 +55,7 @@ android { | |||
| 55 | 55 | } | |
| 56 | 56 | ||
| 57 | 57 | dependencies { | |
| 58 | - implementation platform('com.google.firebase:firebase-bom:34.4.0') | ||
| 58 | + implementation platform('com.google.firebase:firebase-bom:34.6.0') | ||
| 59 | 59 | implementation 'com.google.firebase:firebase-appcheck' | |
| 60 | 60 | } | |
| 61 | 61 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,20 +4,20 @@ use_frameworks! :linkage => :static | |||
| 4 | 4 | ||
| 5 | 5 | target 'integration_test' do | |
| 6 | 6 | platform :ios, '15.0' | |
| 7 | - pod 'Firebase/AppCheck', '12.4.0' | ||
| 8 | - pod 'Firebase/Database', '12.4.0' | ||
| 9 | - pod 'Firebase/Auth', '12.4.0' | ||
| 10 | - pod 'Firebase/Storage', '12.4.0' | ||
| 11 | - pod 'Firebase/Functions', '12.4.0' | ||
| 7 | + pod 'Firebase/AppCheck', '12.6.0' | ||
| 8 | + pod 'Firebase/Database', '12.6.0' | ||
| 9 | + pod 'Firebase/Auth', '12.6.0' | ||
| 10 | + pod 'Firebase/Storage', '12.6.0' | ||
| 11 | + pod 'Firebase/Functions', '12.6.0' | ||
| 12 | 12 | end | |
| 13 | 13 | ||
| 14 | 14 | target 'integration_test_tvos' do | |
| 15 | 15 | platform :tvos, '15.0' | |
| 16 | - pod 'Firebase/AppCheck', '12.4.0' | ||
| 17 | - pod 'Firebase/Database', '12.4.0' | ||
| 18 | - pod 'Firebase/Auth', '12.4.0' | ||
| 19 | - pod 'Firebase/Storage', '12.4.0' | ||
| 20 | - pod 'Firebase/Functions', '12.4.0' | ||
| 16 | + pod 'Firebase/AppCheck', '12.6.0' | ||
| 17 | + pod 'Firebase/Database', '12.6.0' | ||
| 18 | + pod 'Firebase/Auth', '12.6.0' | ||
| 19 | + pod 'Firebase/Storage', '12.6.0' | ||
| 20 | + pod 'Firebase/Functions', '12.6.0' | ||
| 21 | 21 | end | |
| 22 | 22 | ||
| 23 | 23 | post_install do |installer| | |
| Back | FazBrowse Home | New Git URL |
0 commit comments