We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63186b4 commit bc77cd3Copy full SHA for bc77cd3
examples/associates/projects/core/api/src/main/kotlin/core/api/api.kt
@@ -12,5 +12,5 @@ data class MyType(
12
}
13
14
internal fun String.camelCase() = this.split("_").joinToString("") {
15
- "${it[0].toUpperCase()}${it.substring(1)}"
+ "${it[0].upperCase()}${it.substring(1)}"
16
examples/deps/.bazelrc
@@ -1,4 +1,5 @@
1
common --incompatible_enable_android_toolchain_resolution
2
common --enable_workspace=true
3
common --enable_bzlmod=false
4
-common --android_platforms=//:arm64-v8a
+common --android_platforms=//:arm64-v8a
5
+common --toolchain_resolution_debug=.*
0 commit comments