Skip to content

Commit

Permalink
Release v5.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed May 26, 2023
1 parent 0201d23 commit 5ec5e3b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 21 deletions.
30 changes: 10 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,28 +27,18 @@

## Version Release

$version_release = 5.2.1
$version_release = 5.2.2

// Suport Library
$admob_version = 22.0.0
$unity_ad_version = 4.6.1
$admob_version = 22.1.0 // https://developers.google.com/admob/android/sdk
$unity_ad_version = 4.7.0 // https://developers.google.com/admob/android/mediation/unity#step_3_import_the_unity_ads_sdk_and_adapter

What's New??

* Enhance Performance *
* Refactoring Code *
* Update Admob Library Version 22.0.0 *
* Update : Adding Function Request Admob From Server *
* Add FrogoSdkAdmobActivity *
* New Setup Implementation *
* Fixing Bug : ShowBanner, ShowInterstitial, ShowRewarded *
* Adding Unity Ads *
* Add http timeout millis for google admob interstitial ad *
* Add keyword for google admob ad *
* Add keyword for google admob banner ad *
* Add keyword for google admob interstitial ad *
* Update Admob Library Version 22.1.0 *
* Deprecated Code *
* BIG UPDATE ON PROGRESS *

## How To Use / Implement This Project
### Step 1. Add the JitPack repository to your build file
Expand Down Expand Up @@ -89,16 +79,16 @@ allprojects {
implementation 'com.unity3d.ads:unity-ads:${unity_ad_version}'

// library frogo-admob (Required - Recomended)
implementation 'com.github.amirisback:frogo-admob:5.2.1'
implementation 'com.github.amirisback:frogo-admob:5.2.2'

// -----------------------------------------------------------------------------------------
// For Single Library Patch

// library frogo-admob (Admob Only)
implementation 'com.github.amirisback.frogo-admob:frogoadmob:5.2.1'
implementation 'com.github.amirisback.frogo-admob:frogoadmob:5.2.2'

// library frogo-admob (Unity Ads Only)
implementation 'com.github.amirisback.frogo-admob:frogounityad:5.2.1'
implementation 'com.github.amirisback.frogo-admob:frogounityad:5.2.2'
}

#### <Option 2> Kotlin DSL
Expand All @@ -111,16 +101,16 @@ allprojects {
implementation("com.unity3d.ads:unity-ads:${unity_ad_version}")

// library frogo-admob (Required - Recomended)
implementation("com.github.amirisback:frogo-admob:5.2.1")
implementation("com.github.amirisback:frogo-admob:5.2.2")

// -----------------------------------------------------------------------------------------
// For Single Library Patch

// library frogo-admob (Admob Only)
implementation("com.github.amirisback.frogo-admob:frogoadmob:5.2.1")
implementation("com.github.amirisback.frogo-admob:frogoadmob:5.2.2")

// library frogo-admob (Unity Ads Only)
implementation("com.github.amirisback.frogo-admob:frogounityad:5.2.1")
implementation("com.github.amirisback.frogo-admob:frogounityad:5.2.2")

}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 5
const val VERSION_MINOR = 2
const val VERSION_PATCH = 1
const val VERSION_PATCH = 2

// ---------------------------------------------------------------------------------------------

Expand Down

0 comments on commit 5ec5e3b

Please sign in to comment.