Skip to content

Commit 8595771

Browse files
committed
Fix compsoe version
1 parent 6820ddb commit 8595771

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
compose true
3737
}
3838
composeOptions {
39-
kotlinCompilerExtensionVersion '1.1.1'
39+
kotlinCompilerExtensionVersion = "1.2.0-rc01"
4040
}
4141
packagingOptions {
4242
resources {

app/src/main/java/jp/kaleidot725/sample/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class MainActivity : ComponentActivity() {
3434
Row(modifier = Modifier.background(color)) {
3535
Text(text = index.toString().padEnd(3, '0'))
3636
Spacer(modifier = Modifier.width(4.dp))
37-
innerTextField(modifier = Modifier)
37+
innerTextField(index = index, isSelected = isSelected, modifier = Modifier)
3838
}
3939
}
4040
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
22
ext {
3-
compose_ui_version = '1.2.0-beta03'
3+
compose_ui_version = '1.2.0-rc01'
44
}
55
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
66
plugins {
77
id 'com.android.application' version '7.4.0-alpha02' apply false
88
id 'com.android.library' version '7.4.0-alpha02' apply false
9-
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
9+
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
1010
}
1111
configurations.all {
1212
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'

texteditor/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ android {
4545
}
4646

4747
composeOptions {
48-
kotlinCompilerExtensionVersion '1.1.1'
48+
kotlinCompilerExtensionVersion '1.2.0-rc01'
4949
}
5050
}
5151

@@ -65,7 +65,7 @@ afterEvaluate {
6565
from components.release
6666
groupId = 'com.github.kaleidot725'
6767
artifactId = 'text-editor-compose'
68-
version = '0.1.0-beta02'
68+
version = '0.1.0-beta03'
6969
}
7070
}
7171
}

0 commit comments

Comments
 (0)