Skip to content

Commit

Permalink
Merge pull request #39 from frogobox/develop/renaming-module
Browse files Browse the repository at this point in the history
DEVELOP :: Fixing naming new module got error
  • Loading branch information
amirisback authored Jun 17, 2023
2 parents 0c71005 + c46122f commit a39f280
Show file tree
Hide file tree
Showing 3 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 @@ -20,7 +20,7 @@
## Version Release
This Is Latest Release

$version_release = 1.1.7
$version_release = 1.1.8

What's New??

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

dependencies {
// library frogo-ui
implementation 'com.github.frogobox:frogo-ui:1.1.7'
implementation 'com.github.frogobox:frogo-ui:1.1.8'

// library frogo-ui for desktop
implementation 'com.github.frogobox.frogo-ui:core-ui:1.1.7'
implementation 'com.github.frogobox.frogo-ui:core-ui:1.1.8'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-ui
implementation("com.github.frogobox:frogo-ui:1.1.7")
implementation("com.github.frogobox:frogo-ui:1.1.8")

// library frogo-ui for desktop
implementation("com.github.frogobox.frogo-ui:core-ui:1.1.7")
implementation("com.github.frogobox.frogo-ui:core-ui:1.1.8")
}

## Documentation
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/DependencyGradle.kt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ object DependencyGradle {
const val COMPOSE_MULTIPLATFORM_VERSION = Version.Androidx.composeMultiPlatform
const val COMPOSE_VERSION = Version.Androidx.composeCompiler

const val FROGO_PATH_CORE_UI = ":core-ui"
const val FROGO_PATH_UI = ":core-ui-android"
const val FROGO_PATH_CORE_UI = ":${ProjectSetting.MODULE_NAME_UI}"
const val FROGO_PATH_UI = ":${ProjectSetting.MODULE_NAME_CORE_UI}"

const val FrogoRecyclerView = "com.github.amirisback:frogo-recycler-view:4.3.5"

Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ object ProjectSetting {
const val LIBRARY_NAME_UI = "ui"
const val LIBRARY_NAME_CORE_UI = "coreui"

const val MODULE_NAME_UI = "frogoui"
const val MODULE_NAME_CORE_UI = "frogocoreui"
const val MODULE_NAME_UI = "core-ui"
const val MODULE_NAME_CORE_UI = "core-ui-android"

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

const val VERSION_MAJOR = 1
const val VERSION_MINOR = 1
const val VERSION_PATCH = 7
const val VERSION_PATCH = 8

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

Expand Down

0 comments on commit a39f280

Please sign in to comment.