Skip to content

Commit

Permalink
v: 3.2.0-beta5
Browse files Browse the repository at this point in the history
  • Loading branch information
josejacoboct committed Feb 10, 2025
1 parent 12496ac commit 8aff565
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions GoogleMobileAds-HyBid-Adapters.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = "GoogleMobileAds-HyBid-Adapters"
spec.version = "3.0.1-beta1.0"
spec.version = "3.2.0-beta5.0"
spec.summary = "HyBid iOS SDK Adapters (Header Bidding & Mediation) for Google Mobile Ads"
spec.description = <<-DESC
Supported ad formats:
Expand Down Expand Up @@ -35,10 +35,10 @@ Pod::Spec.new do |spec|

spec.authors = { "Can Soykarafakili" => "can.soykarafakili@pubnative.net", "Eros Garcia Ponte" => "eros.ponte@pubnative.net", "Fares Benhamouda" => "fares.benhamouda@pubnative.net", "Orkhan Alizada" => "orkhan.alizada@pubnative.net", "Jose Contreras" => "jose.contreras@verve.com", "Aysel Abdullayeva" => "aysel.abdullayeva@verve.com" }
spec.platform = :ios, '12.0'
spec.source = { :git => "https://github.com/pubnative/googleMobileAds-hybid-adapters-ios.git", :tag => "3.0.1-beta1.0" }
spec.source = { :git => "https://github.com/pubnative/googleMobileAds-hybid-adapters-ios.git", :tag => "3.2.0-beta5.0" }
spec.source_files = 'GoogleMobileAdsAdapters/**/*.{swift,h,m}'
spec.static_framework = true

spec.dependency 'HyBid', '3.0.1-beta1'
spec.dependency 'HyBid', '3.2.0-beta5'
spec.dependency 'Google-Mobile-Ads-SDK', '~> 10.0'
end
6 changes: 3 additions & 3 deletions GoogleMobileAdsAdapters/GAD/HyBidGADUtils.m
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,19 @@ + (NSString *)valueWithKey:(NSString *)key
return result;
}

// v: 3.0.1-beta1
// v: 3.2.0-beta5
+ (GADVersionNumber)adSDKVersion {
GADVersionNumber version = {0};
version.majorVersion = 3;
version.minorVersion = 0;
version.minorVersion = 2;
version.patchVersion = 0;
return version;
}

+ (GADVersionNumber)adapterVersion {
GADVersionNumber version = {0};
version.majorVersion = 3;
version.minorVersion = 0;
version.minorVersion = 2;
version.patchVersion = 0;
return version;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ - (void)loadInterstitialForAdConfiguration:(GADMediationInterstitialAdConfigurat
}

self.interstitialPresenter = [self.interstitalPresenterFactory createInterstitalPresenterWithAd:self.ad
withVideoSkipOffset:videoSkipOffset.offset.integerValue
withVideoSkipOffset:videoSkipOffset
withHTMLSkipOffset:htmlSkipOffset.offset.integerValue
withCloseOnFinish:closeOnFinish
withDelegate:self];
Expand Down
9 changes: 5 additions & 4 deletions GoogleMobileAdsAdapters/GAM/HyBidGAMUtils.m
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright © 2024 PubNative. All rights reserved.
// Copyright © 2020 PubNative. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
Expand Down Expand Up @@ -61,19 +61,20 @@ + (NSString *)valueWithKey:(NSString *)key
return result;
}

// v: 3.0.1-beta1

// v: 3.2.0-beta5
+ (GADVersionNumber)adSDKVersion {
GADVersionNumber version = {0};
version.majorVersion = 3;
version.minorVersion = 0;
version.minorVersion = 2;
version.patchVersion = 0;
return version;
}

+ (GADVersionNumber)adapterVersion {
GADVersionNumber version = {0};
version.majorVersion = 3;
version.minorVersion = 0;
version.minorVersion = 2;
version.patchVersion = 0;
return version;
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ It will install HyBid Adapters, as well as HyBid iOS SDK and Google Mobile Ads i

```ruby
platform :ios, '10.0'
pod 'GoogleMobileAds-HyBid-Adapters', '3.0.1-beta1.0'
pod 'GoogleMobileAds-HyBid-Adapters', '3.2.0-beta5.0'
```

2. Run `pod install --repo-update` to install the pod in your project.
Expand Down

0 comments on commit 8aff565

Please sign in to comment.