Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 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
7 changes: 7 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ appLovin-mediation = "13.3.0.0"
# Liftoff = Vungle
#vungle = "_._._" # included with nediation adapter
vungle-mediation = "7.5.0.0"
# Pangle
#pangle = "_._._" # included with nediation adapter
pangle-mediation = "7.2.0.4.0"
# https://github.com/xdevplatform/twitter-api-java-sdk/tags
twitterApi = "2.0.3"
# https://cloud.google.com/java/docs/reference/google-api-client/latest/history
Expand Down Expand Up @@ -217,6 +220,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" }
pangle-mediation = { module = "com.google.ads.mediation:pangle", version.ref = "pangle-mediation" }
twitterApi = { module = "com.twitter:twitter-api-java-sdk", version.ref = "twitterApi" }
# googleApiClient = { module = "com.google.api-client:google-api-client-android", version.ref = "googleApiClient" }
youTubeGoogleApiClient = { module = "com.google.apis:google-api-services-youtube", version.ref = "youTubeGoogleApiClient" }
Expand Down Expand Up @@ -318,6 +322,9 @@ appLovin = [
vungle = [
"vungle-mediation",
]
pangle = [
"pangle-mediation",
]
twitter = [
"twitterApi",
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ com.github.bumptech.glide:okhttp3-integration:4.16.0
com.github.chuckerteam.chucker:library-no-op:4.1.0
com.google.ads.mediation:applovin:13.3.0.0
com.google.ads.mediation:facebook:6.20.0.0
com.google.ads.mediation:pangle:7.2.0.4.0
com.google.ads.mediation:vungle:7.5.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 @@ -157,6 +158,9 @@ com.google.maps.android:android-maps-utils:3.14.0
com.google.maps.android:maps-ktx:5.2.0
com.google.maps.android:maps-utils-ktx:5.2.0
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:4.12.0
com.squareup.okhttp3:okhttp-bom:4.12.0
com.squareup.okhttp3:okhttp:4.12.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ com.github.scribejava:scribejava-core:8.3.1
com.github.scribejava:scribejava-java8:8.3.1
com.google.ads.mediation:applovin:13.3.0.0
com.google.ads.mediation:facebook:6.20.0.0
com.google.ads.mediation:pangle:7.2.0.4.0
com.google.ads.mediation:vungle:7.5.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 @@ -199,6 +200,11 @@ com.google.maps.android:maps-ktx:5.2.0
com.google.maps.android:maps-utils-ktx:5.2.0
com.google.oauth-client:google-oauth-client:1.36.0
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:4.12.0
com.squareup.okhttp3:okhttp-bom:4.12.0
com.squareup.okhttp3:okhttp:4.12.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 @@ -394,6 +394,7 @@ dependencies {
implementation(libs.bundles.fb)
implementation(libs.bundles.appLovin)
implementation(libs.bundles.vungle)
implementation(libs.bundles.pangle)
Comment thread
mmathieum marked this conversation as resolved.
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 @@ -36,6 +36,12 @@ dependencyResolutionManagement {
includeGroupByRegex("com\\.google\\.play.*")
}
}
maven {
url = 'https://artifact.bytedance.com/repository/pangle'
content {
includeGroupByRegex("com\\.pangle\\..*")
}
}
mavenCentral {}
}
versionCatalogs {
Expand Down