htoooth
htoooth
这个@Produce 很精妙,用于启动Activity的时候调用
``` Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: ``` I find you use `org/jetbrains/annotations/NotNull.class` in `Preconditions.class`. I think this is due to this error. How to avoid...
When I set up the snippet, I found that there were two same options in the prompt. In the figure above, I set btn, txt, ui, vc, and they all...
When I compile rescript into JavaScript and have Node.js run it, I found that the `@rescript/core`was not set as a esmodule. When I manually changed the `package.json` in the `core`...
I found that @unboxed supports many types, but it does not support ArrayBuffer or TypedArray. ```res @unboxed type dataType = Bin(Js_typed_array2.ArrayBuffer.t) | Json(Js.Json.t) | Text(string) ``` ```res @unboxed type dataType...
```rescript let a = lazy({}) // format to let a = lazy {} // and let lazy(b) = a // format to let lazy b = a ``` But the...