Skip to content
Closed
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/liftoffmonetize/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Liftoff Monetize Android Mediation Adapter Changelog

#### Version 7.7.1.0 (In progress)

#### Version 7.7.0.1
- Added support for publishers to configure
`com.vungle.ads.AdConfig.setBackButtonImmediatelyEnabled` for app open ads using
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ext {
// String property to store the artifact id.
stringArtifactId = "vungle"
// String property to store version name.
stringVersion = "7.7.0.1"
stringVersion = "7.7.1.0"
// String property to store group id.
stringGroupId = "com.google.ads.mediation"
// Jacoco version to generate code coverage data
Expand All @@ -25,7 +25,7 @@ android {
defaultConfig {
minSdkVersion 23
targetSdk 33
versionCode 7070001
versionCode 7070100
versionName stringVersion
buildConfigField("String", "ADAPTER_VERSION", "\"${stringVersion}\"")
multiDexEnabled true
Expand Down Expand Up @@ -119,9 +119,9 @@ task jacocoTestReport(type: JacocoReport,
}

dependencies {
implementation 'com.vungle:vungle-ads:7.7.0'
implementation 'com.vungle:vungle-ads:7.7.1'
implementation 'androidx.annotation:annotation:1.5.0'
implementation 'com.google.android.gms:play-services-ads:24.9.0'
implementation 'com.google.android.gms:play-services-ads:25.0.0'

testImplementation "org.jacoco:org.jacoco.core:$jacocoVersion"
testImplementation 'junit:junit:4.13.2'
Expand Down
Loading