Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ThirdPartyAdapters/moloco/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Moloco Android Mediation Adapter Changelog

#### Version 4.9.0.0 (In progress)

#### Version 4.8.1.0
- Verified compatibility with Moloco SDK 4.8.1.

Expand Down
2 changes: 1 addition & 1 deletion ThirdPartyAdapters/moloco/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
kotlinVersion = '2.1.10'
kotlinVersion = '2.3.0'
}
repositories {
google()
Expand Down
8 changes: 4 additions & 4 deletions ThirdPartyAdapters/moloco/moloco/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
// String property to store the proper name of the mediation network adapter.
adapterName = "Moloco"
// String property to store version name.
stringVersion = "4.8.1.0"
stringVersion = "4.9.0.0"
// String property to store group id.
stringGroupId = "com.google.ads.mediation"
// Jacoco version to generate code coverage data
Expand All @@ -34,7 +34,7 @@ android {
minSdk 23
}
targetSdk 33
versionCode 4080100
versionCode 4090000
versionName stringVersion
multiDexEnabled true
buildConfigField('String', 'ADAPTER_VERSION', "\"${stringVersion}\"")
Expand Down Expand Up @@ -140,9 +140,9 @@ dependencies {
if (project.hasProperty('useNextGenGma')) {
implementation 'com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk:1.0.1'
} else {
implementation 'com.google.android.gms:play-services-ads:25.2.0'
implementation 'com.google.android.gms:play-services-ads:25.3.0'
}
implementation 'com.moloco.sdk:moloco-sdk:4.8.1'
implementation 'com.moloco.sdk:moloco-sdk:4.9.0'

testImplementation 'androidx.test:core:1.6.1'
testImplementation 'androidx.test.espresso:espresso-core:3.6.1'
Expand Down
2 changes: 1 addition & 1 deletion ThirdPartyAdapters/unity/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Unity Ads Android Mediation Adapter Changelog

#### Next version
#### Version 4.18.1.0 (In progress)

- Removed old API implementation for interstitial ads. Adapter will start using
the new API implementation.
Expand Down
2 changes: 1 addition & 1 deletion ThirdPartyAdapters/unity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

buildscript {
ext {
kotlinVersion = '2.1.10'
kotlinVersion = '2.3.0'
}
repositories {
google()
Expand Down
8 changes: 4 additions & 4 deletions ThirdPartyAdapters/unity/unity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ext {
// String property to store the proper name of the mediation network adapter.
adapterName = "UnityAds"
// String property to store version name.
stringVersion = "4.18.0.0"
stringVersion = "4.18.1.0"
// String property to store group id.
stringGroupId = "com.google.ads.mediation"
// Jacoco version to generate code coverage data
Expand All @@ -29,7 +29,7 @@ android {
minSdk 23
}
targetSdk 33
versionCode 4180000
versionCode 4180100
versionName stringVersion
buildConfigField("String", "ADAPTER_VERSION", "\"${stringVersion}\"")
android.buildFeatures.buildConfig true
Expand Down Expand Up @@ -120,13 +120,13 @@ task jacocoTestReport(type: JacocoReport,
}

dependencies {
implementation 'com.unity3d.ads:unity-ads:4.18.0'
implementation 'com.unity3d.ads:unity-ads:4.18.1'
implementation 'androidx.annotation:annotation:1.5.0'
// Check for a 'useNextGenGma' flag to use the next generation GMA SDK.
if (project.hasProperty('useNextGenGma')) {
implementation 'com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk:1.0.1'
} else {
implementation 'com.google.android.gms:play-services-ads:25.2.0'
implementation 'com.google.android.gms:play-services-ads:25.3.0'
}

testImplementation 'androidx.core:core-ktx:1.8.0'
Expand Down
Loading