info
The below information is a guide for modifications when changing the version from 6.x.x -> 7.0.0.
Breaking Changes
1. Changes related to GfpTheme
GfpTheme.LIGHT
, GfpTheme.DARK
, and GfpTheme.SYSTEM
that were specified as deprecated are removed.
2. Removal of GfpNativeBackgroundOptions class
The GfpNativeBackgroundOption
class specified as deprecated is removed.
3. Changes related to HeaderBidding
Need to add APS module to use the APS HeaderBidding. (It is build with APS 9.8.8)
- Kotlin DSL
- Groovy
dependencies {
implementation(platform("com.naver.gfpsdk:nam-bom:8.1.0"))
implementation("com.naver.gfpsdk:nam-aps") // AmazonPublisherServices(APS) extension
}
dependencies {
implementation platform('com.naver.gfpsdk:nam-bom:8.1.0')
implementation 'com.naver.gfpsdk:nam-aps' // AmazonPublisherServices(APS) extension
}
Instead of using the creator when creating GfpApsAdParam, ApsUtils.createGfpApsAdParam(DTBAdResponse)
is used.