Skip to content

Commit

Permalink
Release v4.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Oct 30, 2023
1 parent 90e06f0 commit 56da3c5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
## Version Release
This Is Latest Release

$version_release = 4.3.5
$version_release = 4.3.6

What's New??

Expand Down Expand Up @@ -90,14 +90,14 @@ allprojects {

dependencies {
// library frogo-recycler-view
implementation 'com.github.amirisback:frogo-recycler-view:4.3.5'
implementation 'com.github.amirisback:frogo-recycler-view:4.3.6'
}

#### <Option 2> Kotlin DSL Gradle

dependencies {
// library frogo-recycler-view
implementation("com.github.amirisback:frogo-recycler-view:4.3.5")
implementation("com.github.amirisback:frogo-recycler-view:4.3.6")
}

### Step 3. Create xml view
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.0.0" apply false
id("com.android.library") version "8.0.0" apply false
id("com.android.application") version "8.1.2" apply false
id("com.android.library") version "8.1.2" 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{

// library frogo-build-src
implementation("com.github.frogobox:open-build-src:2.1.6")
implementation("com.github.frogobox:open-build-src:3.0.0")

}
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ object ProjectSetting {

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

const val PROJECT_MIN_SDK = 21
const val PROJECT_COMPILE_SDK = 33
const val PROJECT_TARGET_SDK = PROJECT_COMPILE_SDK
const val PROJECT_MIN_SDK = Version.Gradle.minSdk
const val PROJECT_COMPILE_SDK = Version.Gradle.compileSdk
const val PROJECT_TARGET_SDK = Version.Gradle.targetSdk

const val PROJECT_APP_ID = "$APP_DOMAIN.$APP_PLAY_CONSOLE.$APP_NAME"
const val PROJECT_VERSION_CODE = (VERSION_MAJOR * 100) + (VERSION_MINOR * 10) + (VERSION_PATCH * 1)
Expand Down

0 comments on commit 56da3c5

Please sign in to comment.