BidmadSDK 1.10.4 Update Guide[ENG] - bidmad/Bidmad-Android GitHub Wiki
(Android) BidmadSDK 1.10.4 Update Guide
As ironsource Network was supported in version 1.10.4, there was a change in the gradle configuration. If you are updating to version 1.10.4, please follow the procedure below to change the gradle setting.
Android Studio Project
- Add maven repo inside allprojects tag in build.gradle(Top level, project)
allprojects { repositories { ... maven { url 'https://dl.bintray.com/ironsource-mobile/android-sdk' } //ironsource maven { url 'https://dl.bintray.com/ironsource-mobile/android-adapters'} //ironsource } }
- Change bidmadSDK version to 1.10.4 in build.gradle(app level)
implementation 'com.adop.sdk:bidmad-android:1.10.4' // android Version User implementation 'com.adop.sdk:bidmad-androidx:1.10.4'// androidx Version User