Comment on page
Change Logs
This page documents the deprecations or breaking changes in our SDK compared to previous versions
Deprecate version: v5.9.0
Deprecated Clear Guest Id Method : Call the removeGuestId(applicationContext) before initializing the SDK if you intend to change the Guest id.
Call the removeGuestId(applicationContext) before initializing the SDK if you intent to change the Guest id.
/**
* clears the guest_id from the preference manager
*/
fun removeGuestId(applicationContext: Context)
Deprecate version: v5.8.0
Starting from firework_sdk:v5.8.0+, multiple exoplayer versions support up to exoplayer 2.16.1 has been handled by firework_sdk. Application developers can ignore AndroidFireworkPlayer library dependencies.
dependencies {
/**** Deprecated AndroidFireworkPlayer dependency as below from version v5.8.0 ****/
// If you are using ExoPlayer version 2.11.7
implementation 'com.github.loopsocial:AndroidFireworkPlayer:v2.11.7.8'
// If you are using ExoPlayer version 2.12.1
implementation 'com.github.loopsocial:AndroidFireworkPlayer:v2.12.1.8'
// If you are using ExoPlayer version 2.13.3
implementation 'com.github.loopsocial:AndroidFireworkPlayer:v2.13.3.8'
// If you are using ExoPlayer version 2.13.3 and do not want IMA spport
implementation 'com.github.loopsocial:AndroidFireworkPlayer:v2.13.3_noima.1'
}
Deprecate version: v5.5.9
Starting from firework_sdk:v5.5.9+, on the AndroidManifest.xml file, it doesn't require application developers to add "com.loopnow.fireworklibrary.views.FireworkWebClientActivity" into it. Firework SDK no longer needs this Activity for the CTA web view.
<application>
....
....
/**** Deprecated it from version v5.5.9, you can ignore this Activity since v5.5.9+ *****/
// Activity needed for starting a web browser , when CTA on the advertisement is clicked.
<activity
android:name="com.loopnow.fireworklibrary.views.FireworkWebClientActivity"
android:theme="@style/AppTheme.NoActionBar.FullScreen" />
</application>
Last modified 1yr ago