rules_kotlin icon indicating copy to clipboard operation
rules_kotlin copied to clipboard

Bazel rules for Kotlin

Results 243 rules_kotlin issues
Sort by recently updated
recently updated
newest added

Following Dagger's recommended [Hilt integration](https://github.com/google/dagger/blob/78438d562499115cc7b722c7505a4e08a953fa1d/workspace_defs.bzl#L146-L245), when using this `android_library` target with the following Java class, the code generation runs fine: ``` android_library( name = "app", srcs = ["SampleApplication.java"], manifest =...

type: bug
component: android
status: open - investigating
P2

I wanted to capture this because I think it'd be super useful, especially because when there are changes to this repo we usually want to use them right away (for...

P1

... And possibly nightly releases?

status: open - needs triage

In kotlin/internal/jvm/compile.bzl : - if not "kt_abi_plugin_incompatible" in ctx.attr.tags and toolchains.kt.experimental_use_abi_jars == True: We should probably do a larger cleanup, and remove all ref to experimental_use_abi_jars toolchain attribute

Hi wonderful Bazel folks, I'd noticed that Bazel core was ignoring ProGuard files embedded in JARs, rather than bubbling them up in ProguardSpecProvider, so I'd pulled together a PR to...

P3

Android studio is complaining about @Parcelize although the code builds successfully without any issues. I will share the Build file in case: ``` load("//tools/jvm:kt.bzl", "kt_compiler_plugin", "kt_jvm_library") kt_compiler_plugin( name = "parcelize_plugin",...

P1

On Windows and with 1.5.0-beta-4, any `kt_jvm_test` target fails with an error of the following form: ``` Executing tests from //foobar:descriptor_utils_test ----------------------------------------------------------------------------- ERROR(tools/test/windows/tw.cc:1293) ERROR: src/main/native/windows/process.cc(202): CreateProcessW("C:\users\runneradmin\_bazel_runneradmin\2gbstkcc\execroot\project\bazel-out\x64_windows-opt\bin\foobar\descriptor_utils_test"): %1 is not a...

type: bug
component: common
status: open - investigating
P2

Following up on #531, the coroutine implementation of multiplexing requests suffers from corruption issues. Currently, switching to a pure java implementation, but the source of the corruption should be understood.

P3