Skip to content

Commit b4a3c70

Browse files
committed
Admob Updates
1 parent af0a62a commit b4a3c70

File tree

525 files changed

+4436
-3557
lines changed

Some content is hidden

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

525 files changed

+4436
-3557
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
dependencies {
2-
implementation 'com.google.android.gms:play-services-ads:23.3.0'
3-
implementation 'com.google.android.ump:user-messaging-platform:2.1.0'
4-
implementation 'androidx.fragment:fragment:1.3.0'
2+
implementation 'com.google.android.gms:play-services-ads:24.9.0'
3+
implementation 'com.google.android.ump:user-messaging-platform:4.0.0'
4+
implementation 'androidx.fragment:fragment:1.3.0'
55
}
66

77
android.defaultConfig {
8-
minSdkVersion Math.max(minSdkVersion?.apiLevel ?: 15, 21)
8+
minSdkVersion Math.max(minSdkVersion?.apiLevel ?: 15, 23)
99
}
10-
ext["minSdkVersion"] = Math.max(ext.find("minSdkVersion")?:15, 21)
10+
ext["minSdkVersion"] = Math.max(ext.find("minSdkVersion")?:15, 23)
785 Bytes
Binary file not shown.
-15.9 KB
Binary file not shown.
Binary file not shown.

plugins/2023.3686/iphone-sim/FBLPromises.framework/Info.plist

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>BuildMachineOSBuild</key>
6-
<string>22G830</string>
6+
<string>23J126</string>
77
<key>CFBundleDevelopmentRegion</key>
88
<string>en</string>
99
<key>CFBundleExecutable</key>
@@ -29,19 +29,19 @@
2929
<key>DTCompiler</key>
3030
<string>com.apple.compilers.llvm.clang.1_0</string>
3131
<key>DTPlatformBuild</key>
32-
<string>21C52</string>
32+
<string>22C146</string>
3333
<key>DTPlatformName</key>
3434
<string>iphonesimulator</string>
3535
<key>DTPlatformVersion</key>
36-
<string>17.2</string>
36+
<string>18.2</string>
3737
<key>DTSDKBuild</key>
38-
<string>21C52</string>
38+
<string>22C146</string>
3939
<key>DTSDKName</key>
40-
<string>iphonesimulator17.2</string>
40+
<string>iphonesimulator18.2</string>
4141
<key>DTXcode</key>
42-
<string>1520</string>
42+
<string>1620</string>
4343
<key>DTXcodeBuild</key>
44-
<string>15C500b</string>
44+
<string>16C5032a</string>
4545
<key>MinimumOSVersion</key>
4646
<string>100.0</string>
4747
<key>UIDeviceFamily</key>

plugins/2023.3686/iphone-sim/FBLPromises.framework/Modules/module.modulemap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
framework module PromisesObjC {
1+
framework module FBLPromises {
22
umbrella header "PromisesObjC-umbrella.h"
33
export *
44
module * { export * }
Binary file not shown.

plugins/2023.3686/iphone-sim/FirebaseAnalytics.framework/Headers/FIRAnalytics+OnDevice.h

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,38 @@ API_UNAVAILABLE(macCatalyst, macos, tvos, watchos)
88
@interface FIRAnalytics (OnDevice)
99

1010
/// Initiates on-device conversion measurement given a user email address. Requires dependency
11-
/// GoogleAppMeasurementOnDeviceConversion to be linked in, otherwise it is a no-op.
11+
/// GoogleAdsOnDeviceConversion from
12+
/// https://github.com/googleads/google-ads-on-device-conversion-ios-sdk/ to be linked in, otherwise
13+
/// it is a no-op.
1214
/// @param emailAddress User email address. Include a domain name for all email addresses
1315
/// (e.g. gmail.com or hotmail.co.jp).
1416
+ (void)initiateOnDeviceConversionMeasurementWithEmailAddress:(NSString *)emailAddress
1517
NS_SWIFT_NAME(initiateOnDeviceConversionMeasurement(emailAddress:));
1618

1719
/// Initiates on-device conversion measurement given a phone number in E.164 format. Requires
18-
/// dependency GoogleAppMeasurementOnDeviceConversion to be linked in, otherwise it is a no-op.
20+
/// dependency GoogleAdsOnDeviceConversion from
21+
/// https://github.com/googleads/google-ads-on-device-conversion-ios-sdk/ to be linked in, otherwise
22+
/// it is a no-op.
1923
/// @param phoneNumber User phone number. Must be in E.164 format, which means it must be
2024
/// limited to a maximum of 15 digits and must include a plus sign (+) prefix and country code
2125
/// with no dashes, parentheses, or spaces.
2226
+ (void)initiateOnDeviceConversionMeasurementWithPhoneNumber:(NSString *)phoneNumber
2327
NS_SWIFT_NAME(initiateOnDeviceConversionMeasurement(phoneNumber:));
2428

2529
/// Initiates on-device conversion measurement given a sha256-hashed user email address. Requires
26-
/// dependency GoogleAppMeasurementOnDeviceConversion to be linked in, otherwise it is a no-op.
30+
/// dependency GoogleAdsOnDeviceConversion from
31+
/// https://github.com/googleads/google-ads-on-device-conversion-ios-sdk/ to be linked in, otherwise
32+
/// it is a no-op.
2733
/// @param hashedEmailAddress User email address as a UTF8-encoded string normalized and hashed
2834
/// according to the instructions at
2935
/// https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3.
3036
+ (void)initiateOnDeviceConversionMeasurementWithHashedEmailAddress:(NSData *)hashedEmailAddress
3137
NS_SWIFT_NAME(initiateOnDeviceConversionMeasurement(hashedEmailAddress:));
3238

3339
/// Initiates on-device conversion measurement given a sha256-hashed phone number in E.164 format.
34-
/// Requires dependency GoogleAppMeasurementOnDeviceConversion to be linked in, otherwise it is a
35-
/// no-op.
40+
/// Requires dependency GoogleAdsOnDeviceConversion from
41+
/// https://github.com/googleads/google-ads-on-device-conversion-ios-sdk/ to be linked in, otherwise
42+
/// it is a no-op.
3643
/// @param hashedPhoneNumber UTF8-encoded user phone number in E.164 format and then hashed
3744
/// according to the instructions at
3845
/// https://firebase.google.com/docs/tutorials/ads-ios-on-device-measurement/step-3.

plugins/2023.3686/iphone-sim/FirebaseAnalytics.framework/Headers/FIRAnalytics.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ NS_SWIFT_NAME(Analytics)
2020
/// the same parameters. Up to 500 event names are supported. Using predefined events and/or
2121
/// parameters is recommended for optimal reporting.
2222
///
23-
/// The following event names are reserved and cannot be used:
23+
/// The following event names are reserved - events with these names will be dropped, and instead an
24+
/// error event will be logged:
2425
/// <ul>
2526
/// <li>ad_activeview</li>
2627
/// <li>ad_click</li>
@@ -44,7 +45,6 @@ NS_SWIFT_NAME(Analytics)
4445
/// <li>firebase_campaign</li>
4546
/// <li>first_open</li>
4647
/// <li>first_visit</li>
47-
/// <li>in_app_purchase</li>
4848
/// <li>notification_dismiss</li>
4949
/// <li>notification_foreground</li>
5050
/// <li>notification_open</li>

plugins/2023.3686/iphone-sim/FirebaseAnalytics.framework/Headers/FIREventNames.h

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,26 @@ static NSString *const kFIREventEarnVirtualCurrency
147147
static NSString *const kFIREventGenerateLead NS_SWIFT_NAME(AnalyticsEventGenerateLead) =
148148
@"generate_lead";
149149

150+
/// In-App Purchase event. This event signifies that extra content or a subscription was purchased
151+
/// by a user inside an app. Note: This is different from the ecommerce purchase event. Note: If you
152+
/// supply the @c AnalyticsParameterValue parameter, you must also supply the
153+
/// @c AnalyticsParameterCurrency parameter so that revenue metrics can be computed accurately.
154+
/// Params:
155+
///
156+
/// <ul>
157+
/// <li>@c AnalyticsParameterCurrency (String)</li>
158+
/// <li>@c AnalyticsParameterFreeTrial (Int) (optional)</li>
159+
/// <li>@c AnalyticsParameterPrice (Double) (optional)</li>
160+
/// <li>@c AnalyticsParameterPriceIsDiscounted (Int) (optional)</li>
161+
/// <li>@c AnalyticsParameterProductID (String) (optional)</li>
162+
/// <li>@c AnalyticsParameterProductName (String) (optional)</li>
163+
/// <li>@c AnalyticsParameterQuantity (Int) (optional)</li>
164+
/// <li>@c AnalyticsParameterSubscription (Int) (optional)</li>
165+
/// <li>@c AnalyticsParameterValue (Double)</li>
166+
/// </ul>
167+
static NSString *const kFIREventInAppPurchase NS_SWIFT_NAME(AnalyticsEventInAppPurchase) =
168+
@"in_app_purchase";
169+
150170
/// Join Group event. Log this event when a user joins a group such as a guild, team or family. Use
151171
/// this event to analyze how popular certain groups or social features are in your app. Params:
152172
///

0 commit comments

Comments
 (0)