BidmadSDK 1.10.5 Update Guide[ENG] - bidmad/Bidmad-Android GitHub Wiki
(Android) BidmadSDK 1.10.5 Update Guide
As Adfit Network was supported in version 1.10.5, there was a change in the gradle configuration. If you are updating to version 1.10.5, 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 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' } //Adift } }
- Update when the version of gradle plugin in dependencies tag of build.gradle(Top level, project) is lower than 3.5.4
*For Android version users, no update is required.
classpath 'com.android.tools.build:gradle:3.5.4'
- Change bidmadSDK version to 1.10.5 in build.gradle(app level)
implementation 'com.adop.sdk:bidmad-android:1.10.5' // android Version User implementation 'com.adop.sdk:bidmad-androidx:1.10.5'// androidx Version User