Skip to content

Commit

Permalink
Update iOS InMobi SDK 10.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Astrovic committed May 11, 2023
1 parent 24d0dcd commit 86fd3ad
Show file tree
Hide file tree
Showing 76 changed files with 64,349 additions and 2,855 deletions.
4 changes: 2 additions & 2 deletions ios/Classes/TiAdmobModule.m
Original file line number Diff line number Diff line change
Expand Up @@ -322,11 +322,11 @@ - (void)setInMobi_updateGDPRConsent:(id)updateGDPRConsent
if ([TiUtils boolValue:updateGDPRConsent]) {
// this method is required by InMobi to set GDPR
[consentObject setObject:@"1" forKey:@"gdpr"];
[consentObject setObject:@"true" forKey:IM_GDPR_CONSENT_AVAILABLE];
[consentObject setObject:@"true" forKey:IMCommonConstants.IM_GDPR_CONSENT_AVAILABLE];
NSLog(@"[DEBUG] Ti.AdMob: inMobi_updateGDPRConsent --> true");
} else {
[consentObject setObject:@"0" forKey:@"gdpr"];
[consentObject setObject:@"true" forKey:IM_GDPR_CONSENT_AVAILABLE];
[consentObject setObject:@"true" forKey:IMCommonConstants.IM_GDPR_CONSENT_AVAILABLE];
NSLog(@"[DEBUG] Ti.AdMob: inMobi_updateGDPRConsent --> false");
}

Expand Down
4 changes: 4 additions & 0 deletions ios/documentation/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

### v6.1.0
- Update InMobi SDK 10.5.4 (https://support.inmobi.com/monetize/sdk-documentation/download-sdk)
- Update InMobiAdapter 10.5.4.0 (https://developers.google.com/admob/ios/mediation/inmobi#version-10.5.4.0_1)

### v6.0.0
- Migration to SDK v10 (https://developers.google.com/admob/ios/migration#migrate-to-sdk-v10)
- Update Google Mobile Ads SDK 10.4.0 (https://github.com/CocoaPods/Specs/tree/master/Specs/5/9/a/Google-Mobile-Ads-SDK/10.4.0)
Expand Down
2 changes: 1 addition & 1 deletion ios/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 6.0.0
version: 6.1.0
architectures: arm64 x86_64
mac: false
description: AdMob module for ad delivery via AdMob
Expand Down
11 changes: 5 additions & 6 deletions ios/platform/InMobiAdapter.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,31 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>InMobiAdapter.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_armv7</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>InMobiAdapter.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>armv7</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#import <Foundation/Foundation.h>
#import <GoogleMobileAds/GADExtras.h>
#import <GoogleMobileAds/GADRequest.h>
#import <InMobiSDK/IMSdk.h>
@import InMobiSDK;

@interface GADInMobiExtras : NSObject <GADAdNetworkExtras>

Expand Down Expand Up @@ -76,17 +76,6 @@ Set InMobi SDK logLevel.
*/
- (void)setLocation:(nonnull CLLocation *)location;

#pragma mark Setting User IDs
/**
* User ids such as facebook, twitter, etc may be provided to deliver more
* relevant ids.
*/
@property(nonatomic, copy, nullable) NSString *loginId;
/**
* Useful for maintaining different sessions with same login id.
*/
@property(nonatomic, copy, nullable) NSString *sessionId;

@property(nonatomic, copy, nullable, readonly) NSString *city;
@property(nonatomic, copy, nullable, readonly) NSString *state;
@property(nonatomic, copy, nullable, readonly) NSString *country;
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#import <Foundation/Foundation.h>
#import <GoogleMobileAds/GADExtras.h>
#import <GoogleMobileAds/GADRequest.h>
#import <InMobiSDK/IMSdk.h>
@import InMobiSDK;

@interface GADInMobiExtras : NSObject <GADAdNetworkExtras>

Expand Down Expand Up @@ -76,17 +76,6 @@ Set InMobi SDK logLevel.
*/
- (void)setLocation:(nonnull CLLocation *)location;

#pragma mark Setting User IDs
/**
* User ids such as facebook, twitter, etc may be provided to deliver more
* relevant ids.
*/
@property(nonatomic, copy, nullable) NSString *loginId;
/**
* Useful for maintaining different sessions with same login id.
*/
@property(nonatomic, copy, nullable) NSString *sessionId;

@property(nonatomic, copy, nullable, readonly) NSString *city;
@property(nonatomic, copy, nullable, readonly) NSString *state;
@property(nonatomic, copy, nullable, readonly) NSString *country;
Expand Down
Binary file not shown.
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 86fd3ad

Please sign in to comment.