Skip to content

Commit

Permalink
Release v4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Sep 8, 2024
1 parent e702883 commit 3fe99f6
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 24 deletions.
53 changes: 34 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
## Version Release
This Is Latest Release

$version_release = 4.4.1
$version_release = 4.4.2

What's New??

Expand All @@ -63,18 +63,18 @@ Compose Tutorial - FrogoRecyclerCompose [Click Here](https://github.com/amirisba
### Step 1. Add the JitPack repository to your build file (build.gradle : Project)

#### <Option 1> Groovy Gradle
```kotlin
// Add it in your root build.gradle at the end of repositories:

// Add it in your root build.gradle at the end of repositories:

allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```

#### <Option 2> Kotlin DSL Gradle

```kotlin
// Add it in your root build.gradle.kts at the end of repositories:

Expand All @@ -86,22 +86,37 @@ allprojects {
}
```


### Step 2. Add the dependency (build.gradle : Module)

#### <Option 1> Groovy Gradle

dependencies {
// library frogo-recycler-view
implementation 'com.github.amirisback:frogo-recycler-view:4.4.1'
}
```groovy
dependencies {
// library frogo-recycler-view
implementation 'com.github.amirisback:frogo-recycler-view:4.4.2'
}
```

#### <Option 2> Kotlin DSL Gradle
```kotlin
dependencies {
// library frogo-recycler-view
implementation("com.github.amirisback:frogo-recycler-view:4.4.2")
}
```

dependencies {
// library frogo-recycler-view
implementation("com.github.amirisback:frogo-recycler-view:4.4.1")
}
#### <Option 3> libs.versions.toml
```yml
[versions]
frogorecyclerview = "4.4.2"

[libraries]
frogo-recyclerview-api = { group = "com.github.amirisback", name = "frogo-recycler-view", version.ref = "frogorecyclerview" }

dependencies {
// library frogo-recyclerview
implementation(libs.frogo.recyclerview)
}
```

### Step 3. Create xml view
```xml
Expand Down
4 changes: 0 additions & 4 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,4 @@ plugins {
repositories {
mavenCentral()
maven("https://jitpack.io")
}

dependencies{

}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/ProjectSetting.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object ProjectSetting {

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

const val PROJECT_MIN_SDK = 21
const val PROJECT_COMPILE_SDK = 34
Expand Down

0 comments on commit 3fe99f6

Please sign in to comment.