diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 6a320f5b..b128b8e8 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -102,6 +102,9 @@ appLovin-mediation = "13.5.0.0" # Liftoff = Vungle #vungle = "_._._" # included with nediation adapter vungle-mediation = "7.6.0.0" +# Pangle +#pangle = "_._._" # included with nediation adapter +pangle-mediation = "7.2.0.4.0" # https://github.com/google/guava/releases/latest guava = "33.5.0-android" # https://github.com/square/leakcanary/releases @@ -213,7 +216,7 @@ fbAudienceNetwork-mediation = { module = "com.google.ads.mediation:facebook", ve appLovin-mediation = { module = "com.google.ads.mediation:applovin", version.ref = "appLovin-mediation" } # vungle = { module = "com.vungle:vungle-ads", version.ref = "vungle" } vungle-mediation = { module = "com.google.ads.mediation:vungle", version.ref = "vungle-mediation" } -# googleApiClient = { module = "com.google.api-client:google-api-client-android", version.ref = "googleApiClient" } +pangle-mediation = { module = "com.google.ads.mediation:pangle", version.ref = "pangle-mediation" } guava = { module = "com.google.guava:guava", version.ref = "guava" } leakcanary = { module = "com.squareup.leakcanary:leakcanary-android", version.ref = "leakcanary" } slackLint = { module = "com.slack.lint:slack-lint-checks", version.ref = "slackLint" } @@ -312,6 +315,9 @@ appLovin = [ vungle = [ "vungle-mediation", ] +pangle = [ + "pangle-mediation", +] retrofit = [ "retrofit", "retrofit-gsonConverter", diff --git a/shared-main/app-android/dependencies/releaseCompileClasspath.txt b/shared-main/app-android/dependencies/releaseCompileClasspath.txt index aacb15ab..2091c399 100644 --- a/shared-main/app-android/dependencies/releaseCompileClasspath.txt +++ b/shared-main/app-android/dependencies/releaseCompileClasspath.txt @@ -104,6 +104,7 @@ com.github.bumptech.glide:okhttp3-integration:5.0.5 com.github.chuckerteam.chucker:library-no-op:4.2.0 com.google.ads.mediation:applovin:13.5.0.0 com.google.ads.mediation:facebook:6.20.0.2 +com.google.ads.mediation:pangle:7.2.0.4.0 com.google.ads.mediation:vungle:7.6.0.0 com.google.android.datatransport:transport-api:3.2.0 com.google.android.datatransport:transport-backend-cct:3.3.0 @@ -164,6 +165,9 @@ com.google.maps.android:android-maps-utils:3.19.1 com.google.maps.android:maps-ktx:5.2.1 com.google.maps.android:maps-utils-ktx:5.2.1 com.google.protobuf:protobuf-javalite:3.25.6 +com.pangle.global:pag-sdk-ad:unfat-7204-20250605231404 +com.pangle.global:pag-sdk:7.2.0.4 +com.pangle.global:tiktok-business-android-sdk-comp:1.3.7-rc.2 com.squareup.okhttp3:logging-interceptor:5.3.0 com.squareup.okhttp3:okhttp-android:5.3.0 com.squareup.okhttp3:okhttp-bom:5.3.0 diff --git a/shared-main/app-android/dependencies/releaseRuntimeClasspath.txt b/shared-main/app-android/dependencies/releaseRuntimeClasspath.txt index 8a40b949..5ccb85c0 100644 --- a/shared-main/app-android/dependencies/releaseRuntimeClasspath.txt +++ b/shared-main/app-android/dependencies/releaseRuntimeClasspath.txt @@ -122,6 +122,7 @@ com.github.bumptech.glide:okhttp3-integration:5.0.5 com.github.chuckerteam.chucker:library-no-op:4.2.0 com.google.ads.mediation:applovin:13.5.0.0 com.google.ads.mediation:facebook:6.20.0.2 +com.google.ads.mediation:pangle:7.2.0.4.0 com.google.ads.mediation:vungle:7.6.0.0 com.google.android.datatransport:transport-api:3.2.0 com.google.android.datatransport:transport-backend-cct:3.3.0 @@ -186,6 +187,11 @@ com.google.maps.android:android-maps-utils:3.19.1 com.google.maps.android:maps-ktx:5.2.1 com.google.maps.android:maps-utils-ktx:5.2.1 com.google.protobuf:protobuf-javalite:3.25.6 +com.pangle.global:pag-apm:2.0.0.5 +com.pangle.global:pag-gecko:2.0.0.5 +com.pangle.global:pag-sdk-ad:unfat-7204-20250605231404 +com.pangle.global:pag-sdk:7.2.0.4 +com.pangle.global:tiktok-business-android-sdk-comp:1.3.7-rc.2 com.squareup.okhttp3:logging-interceptor:5.3.0 com.squareup.okhttp3:okhttp-android:5.3.0 com.squareup.okhttp3:okhttp-bom:5.3.0 diff --git a/shared/app-android/build.gradle b/shared/app-android/build.gradle index 5bf3b8f9..ad28a55d 100644 --- a/shared/app-android/build.gradle +++ b/shared/app-android/build.gradle @@ -386,6 +386,7 @@ dependencies { implementation(libs.bundles.fb) implementation(libs.bundles.appLovin) implementation(libs.bundles.vungle) + implementation(libs.bundles.pangle) implementation(libs.bundles.retrofit) implementation(platform(libs.okhttp.bom)) implementation(libs.bundles.okHttp) diff --git a/shared/settings.gradle b/shared/settings.gradle index 242db906..01d9c8b6 100644 --- a/shared/settings.gradle +++ b/shared/settings.gradle @@ -73,6 +73,12 @@ dependencyResolutionManagement { includeGroupByRegex("com\\.google\\.play.*") } } + maven { + url = 'https://artifact.bytedance.com/repository/pangle' + content { + includeGroupByRegex("com\\.pangle\\..*") + } + } mavenCentral {} } versionCatalogs {