Skip to content

Commit bc77cd3

Browse files
committed
enable toolchain debug and fix toUpserCase;
1 parent 63186b4 commit bc77cd3

File tree

2 files changed

+3
-2
lines changed
  • examples
    • associates/projects/core/api/src/main/kotlin/core/api
    • deps

2 files changed

+3
-2
lines changed

examples/associates/projects/core/api/src/main/kotlin/core/api/api.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ data class MyType(
1212
}
1313

1414
internal fun String.camelCase() = this.split("_").joinToString("") {
15-
"${it[0].toUpperCase()}${it.substring(1)}"
15+
"${it[0].upperCase()}${it.substring(1)}"
1616
}

examples/deps/.bazelrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
common --incompatible_enable_android_toolchain_resolution
22
common --enable_workspace=true
33
common --enable_bzlmod=false
4-
common --android_platforms=//:arm64-v8a
4+
common --android_platforms=//:arm64-v8a
5+
common --toolchain_resolution_debug=.*

0 commit comments

Comments
 (0)