Skip to content

Commit 749d2e7

Browse files
committed
Release v4.2.6
1 parent 061fc3f commit 749d2e7

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
## Version Release
2929

30-
$version_release = 4.2.5
30+
$version_release = 4.2.6
3131

3232
What's New??
3333

@@ -38,6 +38,7 @@ What's New??
3838
* Add FrogoSdkAdmobActivity *
3939
* New Setup Implementation *
4040
* Fixing Bug : ShowBanner, ShowInterstitial, ShowRewarded *
41+
* Adding Unity Ads *
4142

4243
## How To Use / Implement This Project
4344
### Step 1. Add the JitPack repository to your build file
@@ -61,7 +62,7 @@ What's New??
6162
allprojects {
6263
repositories {
6364
...
64-
maven { url = uri("https://jitpack.io") }
65+
maven("https://jitpack.io")
6566
}
6667
}
6768
```
@@ -75,7 +76,7 @@ allprojects {
7576
implementation 'com.google.android.gms:play-services-ads:${latest_version}'
7677

7778
// library frogo-admob-helper
78-
implementation 'com.github.amirisback:frogo-admob:4.2.5'
79+
implementation 'com.github.amirisback:frogo-admob:4.2.6'
7980
}
8081

8182
#### <Option 2> Kotlin DSL
@@ -85,7 +86,7 @@ allprojects {
8586
implementation("com.google.android.gms:play-services-ads:${latest_version}")
8687

8788
// library frogo-admob-helper
88-
implementation("com.github.amirisback:frogo-admob:4.2.5")
89+
implementation("com.github.amirisback:frogo-admob:4.2.6")
8990
}
9091

9192
### Step 3. Adding meta-data on AndroidManifest.xml
@@ -563,6 +564,10 @@ fun FrogoAdmobBannerView(
563564
- New Setup Implementation
564565
- Fixing Bug : ShowBanner, ShowInterstitial, ShowRewarded
565566

567+
>> on Version 4.2.6 +
568+
- Add Unity Ads
569+
- Basic Interstitial
570+
566571
### Test Ads From Google
567572

568573
// Declaration admob id for debug

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ dependencies {
133133
implementation(Frogo.consumeApi(DependencyGradle.FROGO_CONSUME_API))
134134

135135
implementation("com.unity3d.ads:unity-ads:4.0.1")
136+
implementation("com.google.ads.mediation:unity:4.0.1.0")
136137

137138
implementation("com.github.chuckerteam.chucker:library:3.5.2")
138139

buildSrc/src/main/kotlin/ProjectSetting.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ object ProjectSetting {
2424

2525
const val VERSION_MAJOR = 4
2626
const val VERSION_MINOR = 2
27-
const val VERSION_PATCH = 5
27+
const val VERSION_PATCH = 6
2828

2929
const val PROJECT_COMPILE_SDK = 31
3030
const val PROJECT_MIN_SDK = 21

frogoadmob/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ dependencies {
7474
implementation(Androidx.Compose.activity)
7575

7676
implementation("com.unity3d.ads:unity-ads:4.0.1")
77+
implementation("com.google.ads.mediation:unity:4.0.1.0")
7778

7879
implementation(Google.gson)
7980
implementation(Google.material)

0 commit comments

Comments
 (0)