Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@

This Is Latest Release

$version_release = 2.3.0
$version_release = 2.3.1

What's New??

* Fresh Release *
* All Frogo Libs *
* Simple Implementation *
* Open Function Enable Edge To Edge *
* Library Update Latest Version *

## Download this project

Expand Down Expand Up @@ -56,7 +55,7 @@ allprojects {
```groovy
dependencies {
// library frogo-sdk
implementation 'com.github.frogobox:frogo-sdk:2.3.0'
implementation 'com.github.frogobox:frogo-sdk:2.3.1'
}
```

Expand All @@ -65,14 +64,14 @@ dependencies {
```groovy
dependencies {
// library frogo-sdk
implementation("com.github.frogobox:frogo-sdk:2.3.0")
implementation("com.github.frogobox:frogo-sdk:2.3.1")
}
```

#### <Option 3> libs.versions.toml
```yml
[versions]
frogoAndroid = "2.3.0"
frogoAndroid = "2.3.1"

[libraries]
frogo-android = { group = "com.github.frogobox", name = "frogo-sdk", version.ref = "frogoAndroid" }
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 @@ -36,12 +36,12 @@ object ProjectSetting {

const val VERSION_MAJOR = 2
const val VERSION_MINOR = 3
const val VERSION_PATCH = 0
const val VERSION_PATCH = 1

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

const val PROJECT_MIN_SDK = 23
const val PROJECT_COMPILE_SDK = 35
const val PROJECT_COMPILE_SDK = 36
const val PROJECT_TARGET_SDK = PROJECT_COMPILE_SDK

// ---------------------------------------------------------------------------------------------
Expand Down