File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/main/java/jp/kaleidot725/sample Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ android {
36
36
compose true
37
37
}
38
38
composeOptions {
39
- kotlinCompilerExtensionVersion ' 1.1.1 '
39
+ kotlinCompilerExtensionVersion = " 1.2.0-rc01 "
40
40
}
41
41
packagingOptions {
42
42
resources {
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class MainActivity : ComponentActivity() {
34
34
Row (modifier = Modifier .background(color)) {
35
35
Text (text = index.toString().padEnd(3 , ' 0' ))
36
36
Spacer (modifier = Modifier .width(4 .dp))
37
- innerTextField(modifier = Modifier )
37
+ innerTextField(index = index, isSelected = isSelected, modifier = Modifier )
38
38
}
39
39
}
40
40
}
Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext {
3
- compose_ui_version = ' 1.2.0-beta03 '
3
+ compose_ui_version = ' 1.2.0-rc01 '
4
4
}
5
5
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
6
6
plugins {
7
7
id ' com.android.application' version ' 7.4.0-alpha02' apply false
8
8
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
10
10
}
11
11
configurations. all {
12
12
resolutionStrategy. cacheChangingModulesFor 0 , ' seconds'
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ android {
45
45
}
46
46
47
47
composeOptions {
48
- kotlinCompilerExtensionVersion ' 1.1.1 '
48
+ kotlinCompilerExtensionVersion ' 1.2.0-rc01 '
49
49
}
50
50
}
51
51
@@ -65,7 +65,7 @@ afterEvaluate {
65
65
from components. release
66
66
groupId = ' com.github.kaleidot725'
67
67
artifactId = ' text-editor-compose'
68
- version = ' 0.1.0-beta02 '
68
+ version = ' 0.1.0-beta03 '
69
69
}
70
70
}
71
71
}
You can’t perform that action at this time.
0 commit comments