BidmadSDK 1.11.0 Update Guide[ENG] - bidmad/Bidmad-Android GitHub Wiki
(Android) BidmadSDK 1.11.0 Update Guide
There are changes to the Ad Network linked with BidmadSDK in version 1.11.0. Please follow the guide below to update to version 1.11.0.
Android Studio Project
-
Modify the contents of the allprojects> repositories tag in the Build.gradle : App Level file
- Remove the script corresponding to the Old Version and change it to the New Version script
//Old Version google() jcenter() flatDir{ dirs 'libs' dirs "${project(':bidmadsdk').projectDir}/libs" } maven { url 'https://dl.bintray.com/pubnative/maven' } //pubnative maven { url "http://repository.youappi.com/repository/release" } //youappi maven { url "https://dl.bintray.com/adop-repo/SDK" } //bidmad maven { url "https://adcolony.bintray.com/AdColony" } //adcolony maven { url 'https://dl.bintray.com/ironsource-mobile/android-sdk' } //ironsource maven { url 'https://dl.bintray.com/ironsource-mobile/android-adapters' } //ironsource maven { url "https://s3.amazonaws.com/moat-sdk-builds" } //mopub maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' } //Adift //New Version(1.11.0) google() jcenter() flatDir{ dirs 'libs' } maven { url "https://dl.bintray.com/adop-repo/SDK" } //bidmad maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' } //Adift maven { url "s3://repo.cauly.net/releases" credentials(AwsCredentials) { accessKey "AKIAWRZUK5MFKYVSUOLB" secretKey "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" } } //Cauly
-
Remove bidmadsdk module *If you have not added the bidmadsdk module, you do not need to proceed with that process. *If CaulySDK included in bidmadsdk module is added to the project separately, please remove the SDK.
- File > Project Structure > Modules > Remove bidmadsdk module > apply
- Remove bidmadsdk folder in the project
-
Update BidmadSDK version
- Change the bidmadSDK version to 1.11.0 in build.gradle : app dependencies
implementation 'com.adop.sdk:bidmad-androidx:1.11.0'