Skip to content

Commit 8b0f408

Browse files
authored
Merge pull request #52 from rootstrap/feature/update-gradle-to-7.4.1
Update gradle to 7.4.1, Kotlin to 1.8.10 and lib version to 1.3.0
2 parents 90679f1 + f841a2b commit 8b0f408

7 files changed

Lines changed: 9 additions & 8 deletions

File tree

ExampleApp Android/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
minSdk = (ExampleAppAndroidConfig.MIN_SDK)
1313
targetSdk = (ExampleAppAndroidConfig.TARGET_SDK)
1414
versionCode = 1
15-
versionName = "1.2.0"
15+
versionName = "1.3.0"
1616

1717
testInstrumentationRunner = ExampleAppAndroidConfig.ANDROID_TEST_INSTRUMENTATION_RUNNER
1818
}

FlowForms-Core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.rootstrap"
9-
version = "1.2.0"
9+
version = "1.3.0"
1010

1111
kotlin {
1212
android {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Based on your project, add FlowForms dependency in your module's build.gradle fi
6565
```kotlin
6666
dependencies {
6767
..
68-
val flowFormsVersion = "1.2.0"
68+
val flowFormsVersion = "1.3.0"
6969

7070
// On KMP projects
7171
implementation("com.github.rootstrap.FlowForms:FlowForms-Core:$flowFormsVersion")

buildSrc/src/main/java/Versions.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
object Versions {
44

55
//app level
6-
const val GRADLE = "7.1.3"
7-
const val KOTLIN = "1.6.0"
6+
const val GRADLE = "7.4.1"
7+
const val KOTLIN = "1.8.10"
88

99
//libs
1010
const val CORE_KTX = "1.7.0"

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Add FlowForms dependency in your module's build.gradle file :
3838
<pre><code class="kotlin">
3939
dependencies {
4040
..
41-
val flowFormsVersion = "1.2.0"
41+
val flowFormsVersion = "1.3.0"
4242

4343
// On KMP projects
4444
implementation("com.github.rootstrap.FlowForms:FlowForms-Core:$flowFormsVersion")

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1515
# Android operating system, and which are packaged with your app"s APK
1616
# https://developer.android.com/topic/libraries/support-library/androidx-rn
1717
android.useAndroidX=true
18+
android.enableJetifier=true
1819
# Kotlin code style for this project: "official" or "obsolete":
1920
kotlin.code.style=official
2021

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Jan 23 17:33:30 ART 2022
1+
#Thu Mar 16 13:49:58 EDT 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)