Skip to content

Commit

Permalink
v1.0.2: Admob Mediation has been added. UnityAds mediated by Admob, and
Browse files Browse the repository at this point in the history
also can be used as standalone.
  • Loading branch information
Almaren committed Nov 18, 2022
1 parent 652421f commit 01c2df1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* *My library not a mediation. Without control of mediated ads price.*

Implemented ad types: interstitials, rewarded.
Ad networks: UnityAds (mediated or standalone), UnityMediation, SuperAwesome, Kidoz, IronSource.
**Ad networks: Admob, UnityAds (mediated or standalone), Admob Mediation, Unity Mediation, SuperAwesome, Kidoz, IronSource.**
Written in **Kotlin**. No UI sample. Android library.

**My library will organize your common use cases for each ad network implementation that you will add.**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ abstract class AdUnitBaseHandler(val activity: Activity) : OnAdStateChange {
val sortedAdSources = getSortedAdSources()
if (adSourceIndex > adSources.size - 1 || adSourceIndex < 0) return false

return adSources[sortedAdSources[adSourceIndex]]?.let { adSource -> // todo fix IndexOutOfBoundsException
return adSources[sortedAdSources[adSourceIndex]]?.let { adSource ->
if (adSource.isLoaded()) {
adSource.show()
true
Expand Down
1 change: 1 addition & 0 deletions local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
# header note.
#Tue May 25 17:30:42 EEST 2021
sdk.dir=/home/ataman/IDE/Android/SDK
# todo set id
admobId=todo set your id

0 comments on commit 01c2df1

Please sign in to comment.