com.chartboost.mediation.unity.adapter.amazon-publisher-services 5.2.0 → 5.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.checksum +1 -1
- package/CHANGELOG.md +10 -0
- package/Chartboost.CSharp.Mediation.Unity.Adapter.AmazonPublisherServices.nuspec +1 -1
- package/Editor/AmazonPublisherServicesAdapterDependencies.xml +3 -3
- package/README.md +1 -1
- package/Runtime/AmazonPublisherServices/AmazonPublisherServicesAdapter.cs +1 -1
- package/package.json +1 -1
package/.checksum
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
a7772eea1dee3e8e3c6e6e3e18c2cd38
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file using the standards as defined at [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0).
|
|
3
3
|
|
|
4
|
+
### Version 5.2.2 *(2026-01-21)*
|
|
5
|
+
This version of the Amazon APS Adapter supports the following native SDK dependencies:
|
|
6
|
+
* Android: `com.chartboost:chartboost-mediation-adapter-amazon-publisher-services:5.11.1.+`
|
|
7
|
+
* iOS: `ChartboostMediationAdapterAmazonPublisherServices: ~> 5.5.3.0`
|
|
8
|
+
|
|
9
|
+
### Version 5.2.1 *(2026-01-21)*
|
|
10
|
+
This version of the Amazon APS Adapter supports the following native SDK dependencies:
|
|
11
|
+
* Android: `com.chartboost:chartboost-mediation-adapter-amazon-publisher-services:5.11.0.+`
|
|
12
|
+
* iOS: `ChartboostMediationAdapterAmazonPublisherServices: ~> 5.5.3.0`
|
|
13
|
+
|
|
4
14
|
### Version 5.2.0 *(2026-01-21)*
|
|
5
15
|
This version of the Amazon APS Adapter supports the following native SDK dependencies:
|
|
6
16
|
* Android: `com.chartboost:chartboost-mediation-adapter-amazon-publisher-services:5.11.0.+`
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<package>
|
|
3
3
|
<metadata>
|
|
4
4
|
<id>Chartboost.CSharp.Mediation.Unity.Adapter.AmazonPublisherServices</id>
|
|
5
|
-
<version>5.2.
|
|
5
|
+
<version>5.2.2</version>
|
|
6
6
|
<title>Chartboost Mediation Adapter - Amazon Publisher Services Adapter</title>
|
|
7
7
|
<description>The Chartboost Mediation Unity SDK Ad Adapter for Amazon Publisher Services.</description>
|
|
8
8
|
<authors>Chartboost</authors>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<dependencies>
|
|
3
3
|
<androidPackages>
|
|
4
4
|
<!-- Android Adapter -->
|
|
5
|
-
<androidPackage spec="com.chartboost:chartboost-mediation-adapter-amazon-publisher-services:5.11.
|
|
5
|
+
<androidPackage spec="com.chartboost:chartboost-mediation-adapter-amazon-publisher-services:5.11.1.+"/>
|
|
6
6
|
|
|
7
7
|
<!-- Partner Android SDK Dependencies-->
|
|
8
8
|
<androidPackage spec="com.iabtcf:iabtcf-decoder:2.0.10"/>
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
</androidPackages>
|
|
14
14
|
<iosPods>
|
|
15
15
|
<!-- iOS Adapter -->
|
|
16
|
-
<iosPod name="ChartboostMediationAdapterAmazonPublisherServices" version="~> 5.5.
|
|
16
|
+
<iosPod name="ChartboostMediationAdapterAmazonPublisherServices" version="~> 5.5.3.0"/>
|
|
17
17
|
|
|
18
18
|
<!-- Partner iOS SDK-->
|
|
19
|
-
<iosPod name="AmazonPublisherServicesSDK" version="~> 5.
|
|
19
|
+
<iosPod name="AmazonPublisherServicesSDK" version="~> 5.3.0" addToAllTargets="true"/>
|
|
20
20
|
|
|
21
21
|
<!-- Amazon Plugin for iOS-->
|
|
22
22
|
<iosPod name="Amazon-SDK-Plugin" minTargetSdk="12.5" path="Assets/Amazon/Plugins/iOS"/>
|
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ In order to add the Chartboost Mediation Unity SDK - Amazon Publisher Services A
|
|
|
15
15
|
|
|
16
16
|
```json
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"com.chartboost.mediation.unity.adapter.amazon-publisher-services": "5.2.
|
|
18
|
+
"com.chartboost.mediation.unity.adapter.amazon-publisher-services": "5.2.2",
|
|
19
19
|
...
|
|
20
20
|
},
|
|
21
21
|
"scopedRegistries": [
|
|
@@ -13,7 +13,7 @@ namespace Chartboost.Mediation.AmazonPublisherServices
|
|
|
13
13
|
/// <summary>
|
|
14
14
|
/// The partner adapter Unity version.
|
|
15
15
|
/// </summary>
|
|
16
|
-
public const string AdapterUnityVersion = "5.2.
|
|
16
|
+
public const string AdapterUnityVersion = "5.2.2";
|
|
17
17
|
|
|
18
18
|
/// <inheritdoc cref="IPartnerAdapterConfiguration.AdapterNativeVersion"/>
|
|
19
19
|
public static string AdapterNativeVersion => Instance.AdapterNativeVersion;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "com.chartboost.mediation.unity.adapter.amazon-publisher-services",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"displayName": "Chartboost Mediation Adapter - Amazon Publisher Services",
|
|
6
6
|
"description": "The Chartboost Mediation Unity SDK Ad Adapter for Amazon Publisher Services.",
|