File tree Expand file tree Collapse file tree 3 files changed +19
-9
lines changed
Expand file tree Collapse file tree 3 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 2727
2828## Version Release
2929
30- $version_release = 4.2.6
30+ $version_release = 4.2.7
31+
32+ // Suport Library
33+ $admob_version = 20.6.0
34+ $unity_ad_version = 4.0.1
3135
3236What's New??
3337
@@ -72,21 +76,27 @@ allprojects {
7276#### <Option 1> Groovy
7377
7478 dependencies {
75- // library google ads
76- implementation 'com.google.android.gms:play-services-ads:${latest_version}'
79+ // library google admob
80+ implementation 'com.google.android.gms:play-services-ads:${admob_version}'
81+
82+ // library unity ads
83+ implementation 'com.unity3d.ads:unity-ads:${unity_ad_version}'
7784
7885 // library frogo-admob-helper
79- implementation 'com.github.amirisback:frogo-admob:4.2.6 '
86+ implementation 'com.github.amirisback:frogo-admob:4.2.7 '
8087 }
8188
8289#### <Option 2> Kotlin DSL
8390
8491 dependencies {
85- // library google ads
86- implementation("com.google.android.gms:play-services-ads:${latest_version}")
92+ // library google admob
93+ implementation("com.google.android.gms:play-services-ads:${admob_version}")
94+
95+ // library unity ads
96+ implementation("com.unity3d.ads:unity-ads:${unity_ad_version}")
8797
8898 // library frogo-admob-helper
89- implementation("com.github.amirisback:frogo-admob:4.2.6 ")
99+ implementation("com.github.amirisback:frogo-admob:4.2.7 ")
90100 }
91101
92102### Step 3. Adding meta-data on AndroidManifest.xml
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ plugins {
1111
1212dependencies{
1313 implementation(" com.github.frogobox:open-build-src:1.0.6" )
14- implementation(" com.github.frogobox:frogo-build-src:1.1.3 " )
14+ implementation(" com.github.frogobox:frogo-build-src:1.1.4 " )
1515}
Original file line number Diff line number Diff 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 = 6
27+ const val VERSION_PATCH = 7
2828
2929 const val PROJECT_COMPILE_SDK = 31
3030 const val PROJECT_MIN_SDK = 21
You can’t perform that action at this time.
0 commit comments