Skip to content

Commit

Permalink
Release v5.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Apr 2, 2024
1 parent c332c60 commit 1a1b7f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@

## Version Release

$version_release = 5.3.5
$version_release = 5.3.6

// Suport Library
$admob_version = 22.6.0 // https://developers.google.com/admob/android/sdk
$admob_version = 23.0.0 // https://developers.google.com/admob/android/sdk
$unity_ad_version = 4.9.1 // 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.6.0 *
* Update Admob Library Version 23.0.0 *
* Deprecated Code *

## How To Use / Implement This Project
Expand Down Expand Up @@ -83,16 +83,16 @@ allprojects {
implementation 'com.unity3d.ads:unity-ads:${unity_ad_version}'

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

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

// library frogo-admob (Admob Only)
implementation 'com.github.amirisback.frogo-admob:ad-admob:5.3.5'
implementation 'com.github.amirisback.frogo-admob:ad-admob:5.3.6'

// library frogo-admob (Unity Ads Only)
implementation 'com.github.amirisback.frogo-admob:ad-unityad:5.3.5'
implementation 'com.github.amirisback.frogo-admob:ad-unityad:5.3.6'
}

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

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

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

// library frogo-admob (Admob Only)
implementation("com.github.amirisback.frogo-admob:ad-admob:5.3.5")
implementation("com.github.amirisback.frogo-admob:ad-admob:5.3.6")

// library frogo-admob (Unity Ads Only)
implementation("com.github.amirisback.frogo-admob:ad-unityad:5.3.5")
implementation("com.github.amirisback.frogo-admob:ad-unityad:5.3.6")

}

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 = 3
const val VERSION_PATCH = 5
const val VERSION_PATCH = 6

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

Expand Down

0 comments on commit 1a1b7f9

Please sign in to comment.