Skip to content
Draft
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
8 changes: 7 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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" }
Expand Down Expand Up @@ -312,6 +315,9 @@ appLovin = [
vungle = [
"vungle-mediation",
]
pangle = [
"pangle-mediation",
]
retrofit = [
"retrofit",
"retrofit-gsonConverter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions shared/app-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
6 changes: 6 additions & 0 deletions shared/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ dependencyResolutionManagement {
includeGroupByRegex("com\\.google\\.play.*")
}
}
maven {
url = 'https://artifact.bytedance.com/repository/pangle'
content {
includeGroupByRegex("com\\.pangle\\..*")
}
}
mavenCentral {}
}
versionCatalogs {
Expand Down