Skip to content

Commit

Permalink
Release v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Dec 16, 2023
1 parent 9cb9524 commit 8ebbaf4
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
## Version Release
This Is Latest Release

$version_release = 2.5.1
$version_release = 2.5.2

What's New??

Expand Down Expand Up @@ -73,20 +73,20 @@ allprojects {

dependencies {
// library frogo-consume-api
implementation 'com.github.frogobox:frogo-consume-api:2.5.1'
implementation 'com.github.frogobox:frogo-consume-api:2.5.2'

// library frogo-consume-api for desktop
implementation 'com.github.frogobox.frogo-consume-api:core-api:2.5.1'
implementation 'com.github.frogobox.frogo-consume-api:core-api:2.5.2'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-consume-api
implementation("com.github.frogobox:frogo-consume-api:2.5.1")
implementation("com.github.frogobox:frogo-consume-api:2.5.2")

// library frogo-consume-api for desktop
implementation("com.github.frogobox.frogo-consume-api:core-api:2.5.1")
implementation("com.github.frogobox.frogo-consume-api:core-api:2.5.2")
}


Expand Down
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,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
id("org.jetbrains.kotlin.jvm") 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 @@ -11,5 +11,5 @@ repositories {

dependencies{
// library frogo-build-src
implementation("com.github.frogobox:open-build-src:3.0.0")
implementation("com.github.frogobox:open-build-src:3.0.2")
}
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ object DependencyGradle {
const val KOTLIN_VERSION = Version.JetBrains.kotlin
const val COMPOSE_MULTIPLATFORM_VERSION = Version.Androidx.composeMultiPlatform

const val FROGO_SDK_VERSION = "2.2.4"
const val FROGO_SDK_VERSION = "2.2.5"
const val FROGO_SDK = "com.github.frogobox:frogo-sdk:$FROGO_SDK_VERSION"
const val FROGO_SDK_CORE = "com.github.frogobox.frogo-sdk:core-sdk:$FROGO_SDK_VERSION"

const val FROGO_UI_VERSION = "2.0.0"
const val FROGO_UI_VERSION = "2.0.1"
const val FROGO_UI = "com.github.frogobox:frogo-ui:$FROGO_UI_VERSION"
const val FROGO_UI_CORE = "com.github.frogobox.frogo-ui:core-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 @@ -31,7 +31,7 @@ object ProjectSetting {

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

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

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

buildFeatures {
viewBinding = true
buildConfig = true
}

compileOptions {
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,5 @@ android.useAndroidX=true
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
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
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 8ebbaf4

Please sign in to comment.