File tree Expand file tree Collapse file tree 8 files changed +30
-20
lines changed
javaSample/src/main/java/com/cleveradssolutions/sampleapp
kotlinSample/src/main/java/com/cleveradssolutions/sampleapp Expand file tree Collapse file tree 8 files changed +30
-20
lines changed Original file line number Diff line number Diff line change 22` com.cleveradssolutions:bigo: `
33Read Bigo Ads SDK releases [ here] ( https://www.bigossp.com/guide/sdk/android/version ) .
44
5+ ### 4.7.0.0
6+ - Certified with Bigo Ads - 4.7.0
7+
58### 4.6.1.0
69- Certified with Bigo Ads - 4.6.1
710
Original file line number Diff line number Diff line change 22` com.cleveradssolutions:fyber: `
33Read DT Exchange SDK releases [ here] ( https://developer.digitalturbine.com/hc/en-us/articles/360010834177-DT-Exchange-Android-Changelog ) .
44
5+ ### 8.2.7.1
6+ - Migration ads requests to Bidding. (Closed beta)
7+
58### 8.2.7.0
69- Certified with DT Exchange - 8.2.7
710
Original file line number Diff line number Diff line change 11## Madex Android Mediation Adapter Changelog
22` com.cleveradssolutions:madex: `
33
4+ ### 1.3.5.0
5+ - Certified with Madex - 1.3.5
6+
47### 1.3.4.0
58- Certified with Madex - 1.3.4
69- Downgrade the dependencies to ` androidx.appcompat:appcompat:1.0.0 ` and ` com.google.android.material:material:1.3.0 ` .
Original file line number Diff line number Diff line change 22` com.cleveradssolutions:mintegral: `
33Read Mintegral SDK releases [ here] ( http://cdn-adn.rayjump.com/cdn-adn/v2/markdown_v2/index.html?file=sdk-m_sdk-android&lang=en ) .
44
5+ ### 16.7.21.0
6+ - Certified with Mintegral - 16.7.21
7+
58### 16.6.71.0
69- Certified with Mintegral - 16.6.71
710
Original file line number Diff line number Diff line change 22` com.cleveradssolutions:yandex: `
33Read Yandex Mobile Ads SDK releases [ here] ( https://github.com/yandexmobile/yandex-ads-sdk-android/blob/master/changelogs/mobileads/CHANGELOG.md ) .
44
5+ ### 27.0.1.0
6+ - Certified with Yandex Mobile Ads - 7.0.1
7+ - Fixed calculations of the Adaptive Banner ad size.
8+
59### 27.0.0.0
610- Certified with Yandex Mobile Ads - 7.0.0
711
Original file line number Diff line number Diff line change 11// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
33buildscript {
4- ext. cas_version = ' 3.6.1 '
4+ ext. cas_version = ' 3.7.0 '
55
66 ext. kotlin_version = ' 1.8.22'
77
Original file line number Diff line number Diff line change @@ -80,10 +80,7 @@ public void onComplete() {
8080 });
8181
8282 // Load the Ad
83- appOpenAd .loadAd (
84- this ,
85- getResources ().getConfiguration ().orientation == Configuration .ORIENTATION_LANDSCAPE ,
86- new LoadAdCallback () {
83+ appOpenAd .loadAd (this , new LoadAdCallback () {
8784 @ Override
8885 public void onAdLoaded () {
8986 Log .d (TAG , "App Open Ad loaded" );
Original file line number Diff line number Diff line change @@ -59,23 +59,20 @@ class SampleAppOpenAdActivity : Activity() {
5959 }
6060
6161 // Load the Ad
62- appOpenAd.loadAd(
63- this ,
64- resources.configuration.orientation == Configuration .ORIENTATION_LANDSCAPE ,
65- object : LoadAdCallback {
66- override fun onAdLoaded () {
67- Log .d(TAG , " App Open Ad loaded" )
68- if (isLoadingAppResources) {
69- isVisibleAppOpenAd = true
70- appOpenAd.show(this @SampleAppOpenAdActivity)
71- }
62+ appOpenAd.loadAd(this , object : LoadAdCallback {
63+ override fun onAdLoaded () {
64+ Log .d(TAG , " App Open Ad loaded" )
65+ if (isLoadingAppResources) {
66+ isVisibleAppOpenAd = true
67+ appOpenAd.show(this @SampleAppOpenAdActivity)
7268 }
69+ }
7370
74- override fun onAdFailedToLoad (error : AdError ) {
75- Log .e(TAG , " App Open Ad failed to load: ${error.message} " )
76- startNextActivity()
77- }
78- })
71+ override fun onAdFailedToLoad (error : AdError ) {
72+ Log .e(TAG , " App Open Ad failed to load: ${error.message} " )
73+ startNextActivity()
74+ }
75+ })
7976 }
8077
8178 private fun startNextActivity () {
You can’t perform that action at this time.
0 commit comments