Skip to content

Commit

Permalink
Release v4.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
amirisback committed Dec 10, 2022
1 parent 8e15987 commit d638716
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
## Version Release
This Is Latest Release

$version_release = 4.3.1
$version_release = 4.3.2

What's New??

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

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

#### <Option 2> Kotlin DSL Gradle

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

### Step 3. Create xml view
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dependencies {
implementation(Androidx.Lifecycle.runtimeKtx)

implementation(Androidx.Compose.activity)
implementation(Androidx.Compose.material)
implementation(Androidx.Compose.material("1.3.1"))
implementation(Androidx.Compose.ui)
implementation(Androidx.Compose.uiToolingPreview)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import androidx.compose.ui.unit.dp
import com.frogobox.apprecycler.model.People
import com.frogobox.apprecycler.sample.kotlin.noadapter.shimmer.KotlinShimmerActivity
import com.frogobox.apprecycler.ui.theme.FrogoRecyclerViewTheme
import com.frogobox.coreui.theme.dimen_8dp
import com.frogobox.recycler.compose.FrogoLazyColumn

class RecyclerComposeActivity : ComponentActivity() {
Expand Down Expand Up @@ -46,7 +45,7 @@ fun ListMessage(data: People) {
val context = LocalContext.current
Column(
Modifier
.padding(dimen_8dp)
.padding(8.dp)
.clickable {
context.startActivity(Intent(context, KotlinShimmerActivity::class.java))
}) {
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 "7.2.2" apply false
id("com.android.library") version "7.2.2" apply false
id("com.android.application") version "7.3.1" apply false
id("com.android.library") version "7.3.1" 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.0.4")
implementation("com.github.frogobox:open-build-src:2.0.7")

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

const val FROGO_PATH_RECYCLER_VIEW = ":frogorecyclerview"

const val FROGO_UI_VERSION = "1.0.8"
const val FROGO_SDK_VERSION = "2.0.8"
const val FROGO_CONSUME_API_VERSION = "2.3.8"
const val FROGO_UI_VERSION = "1.1.1"
const val FROGO_SDK_VERSION = "2.1.0"
const val FROGO_CONSUME_API_VERSION = "2.4.1"

const val FROGO_UI = "com.github.frogobox.frogo-ui:frogoui:$FROGO_UI_VERSION"
const val FROGO_UI = "com.github.frogobox:frogo-ui:$FROGO_UI_VERSION"
const val FROGO_SDK_LOG = "com.github.frogobox.frogo-sdk:frogolog:$FROGO_SDK_VERSION"
const val FROGO_CONSUME_API = "com.github.frogobox:frogo-consume-api:$FROGO_CONSUME_API_VERSION"

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

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

const val PROJECT_MIN_SDK = Version.Gradle.minSdk
const val PROJECT_COMPILE_SDK = Version.Gradle.compileSdk
Expand Down
2 changes: 1 addition & 1 deletion frogorecyclerview/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ dependencies {
api(Androidx.Compose.uiToolingPreview)
api(Androidx.Compose.activity)
api(Androidx.Compose.ui)
api(Androidx.Compose.material)
api(Androidx.Compose.material("1.3.1"))
api(Google.material)

debugImplementation(Androidx.Compose.uiTooling)
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip

0 comments on commit d638716

Please sign in to comment.