Skip to content

Commit

Permalink
Release v2.4.6
Browse files Browse the repository at this point in the history
Co-authored-by: frogoboxbot <[email protected]>
  • Loading branch information
amirisback and frogoboxbot committed Apr 19, 2023
1 parent 255b597 commit 8d2cc95
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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.4.5
$version_release = 2.4.6

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.4.5'
implementation 'com.github.frogobox:frogo-consume-api:2.4.6'

// library frogo-consume-api for desktop
implementation 'com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:2.4.5'
implementation 'com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:2.4.6'
}

#### <Option 2> Kotlin DSL Gradle

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

// library frogo-consume-api for desktop
implementation("com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:2.4.5")
implementation("com.github.frogobox.frogo-consume-api:frogocoreconsumeapi:2.4.6")
}


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:2.1.4")
implementation("com.github.frogobox:open-build-src:2.1.6")
}
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.1.6"
const val FROGO_SDK_VERSION = "2.1.7"
const val FROGO_SDK = "com.github.frogobox:frogo-sdk:$FROGO_SDK_VERSION"
const val FROGO_SDK_CORE = "com.github.frogobox.frogo-sdk:frogocoresdk:$FROGO_SDK_VERSION"

const val FROGO_UI_VERSION = "1.1.4"
const val FROGO_UI_VERSION = "1.1.5"
const val FROGO_UI = "com.github.frogobox:frogo-ui:$FROGO_UI_VERSION"
const val FROGO_UI_CORE = "com.github.frogobox.frogo-ui:frogocoreui:$FROGO_UI_VERSION"

Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ object ProjectSetting {

const val VERSION_MAJOR = 2
const val VERSION_MINOR = 4
const val VERSION_PATCH = 5
const val VERSION_PATCH = 6

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

Expand All @@ -48,7 +48,7 @@ object ProjectSetting {
const val PROJECT_VERSION_CODE = (VERSION_MAJOR * 100) + (VERSION_MINOR * 10) + (VERSION_PATCH * 1)
const val PROJECT_VERSION_NAME = "$VERSION_MAJOR.$VERSION_MINOR.$VERSION_PATCH"

val NAME_APK = NAME_APP.toLowerCase().replace(" ", "-")
val NAME_APK = NAME_APP.lowercase().replace(" ", "-")

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

Expand Down

0 comments on commit 8d2cc95

Please sign in to comment.