Skip to content

Commit

Permalink
Release v5.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Dec 16, 2023
1 parent 85a3350 commit 501b2ed
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 18 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.4
$version_release = 5.3.5

// Suport Library
$admob_version = 22.4.0 // https://developers.google.com/admob/android/sdk
$admob_version = 22.6.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.4.0 *
* Update Admob Library Version 22.6.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.4'
implementation 'com.github.amirisback:frogo-admob:5.3.5'

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

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

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

#### <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.4")
implementation("com.github.amirisback:frogo-admob:5.3.5")

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

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

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

}

Expand Down
1 change: 1 addition & 0 deletions ad-admob/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ android {

buildFeatures {
viewBinding = true
buildConfig = true
}

compileOptions {
Expand Down
1 change: 1 addition & 0 deletions ad-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ android {

buildFeatures {
viewBinding = true
buildConfig = true
}

compileOptions {
Expand Down
1 change: 1 addition & 0 deletions ad-general/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ android {

buildFeatures {
viewBinding = true
buildConfig = true
}

compileOptions {
Expand Down
1 change: 1 addition & 0 deletions ad-unityad/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ android {

buildFeatures {
viewBinding = true
buildConfig = true
}

compileOptions {
Expand Down
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ android {

buildFeatures {
viewBinding = true
buildConfig = true
}

compileOptions {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.1.2" apply false
id("com.android.library") version "8.1.2" apply false
id("com.android.application") version "8.2.0" apply false
id("com.android.library") version "8.2.0" apply false
id("org.jetbrains.kotlin.android") version DependencyGradle.KOTLIN_VERSION apply false
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ repositories {
dependencies{

// open-build-src
implementation("com.github.frogobox:open-build-src:3.0.0")
implementation("com.github.frogobox:open-build-src:3.0.2")

}
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ object DependencyGradle {
const val KOTLIN_REFLECT = "org.jetbrains.kotlin:kotlin-reflect:$KOTLIN_VERSION"
const val COMPOSE_VERSION = Version.Androidx.composeCompiler

const val FROGO_UI_VERSION = "2.0.0"
const val FROGO_SDK_VERSION = "2.2.4"
const val FROGO_CONSUME_API_VERSION = "2.5.1"
const val FROGO_UI_VERSION = "2.0.1"
const val FROGO_SDK_VERSION = "2.2.5"
const val FROGO_CONSUME_API_VERSION = "2.5.2"
const val FROGO_RECYCLER_VIEW_VERSION = "4.3.6"

const val FROGO_UI = "com.github.frogobox:frogo-ui:$FROGO_UI_VERSION"
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 = 4
const val VERSION_PATCH = 5

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

Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip

0 comments on commit 501b2ed

Please sign in to comment.