Version Release
This Is Latest Release
$version_release = 3.8.7
What's New??
* Update Build Gradle to 7.0.2 *
* Update Frogo Android UI Kit *
* Enhance Performance *
* FrogoRecyclerCompose - FrogoLazyColumn *
* FrogoRecyclerCompose - FrogoLazyRow *
* FrogoRecyclerCompose - FrogoLazyGrid *
* Migrate From Groovy to Kotlin DSL *
Compose Tutorial - FrogoRecyclerCompose Click Here
Download this project
Step 1. Add the JitPack repository to your build file (build.gradle : Project)
<Option 1> Groovy Gradle
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
<Option 2> Kotlin DSL Gradle
Add it in your root build.gradle.kts at the end of repositories:
allprojects {
repositories {
...
maven { url = uri("https://jitpack.io") }
}
}
Step 2. Add the dependency (build.gradle : Module)
<Option 1> Groovy Gradle
dependencies {
// library frogo-recycler-view
implementation 'com.github.amirisback:frogo-recycler-view:3.8.7'
}
<Option 2> Kotlin DSL Gradle
dependencies {
// library frogo-recycler-view
implementation("com.github.amirisback:frogo-recycler-view:3.8.7")
}