Alex Humesky

Results 147 comments of Alex Humesky

We do plan to add R8 support, but first we're removing the last bits of dx, updating bazel's D8 dependnecy, and moving to D8-based desugaring. So we probably won't get...

Unfortunately we had to deprioritize R8 integration, so it might be still some time before that's available, so we should look at the alternatives here. One option is a macro...

@cpsauer re: "[Google Play is requiring API level 30, starting in August](https://developer.android.com/distribute/best-practices/develop/target-sdk)", I believe that ndk r21 supports API level 30, and it's an LTS release, so it should be...

Thanks @freedomtan, I'm happy to review a pull request for this if you're able to send one out.

I have an update to share: I figured out a way to remove the need for `--copt=-nostdinc++` when compiling Tensorflow. Basically there are a number of `-isystem` flags that are...

Here are my changes so far: https://github.com/ahumesky/bazel/commit/3de69da0323bb0bd075611a4f12e590dd1204cf9

We're already looking into implementing this, thanks for the support

Yeah, exactly, so D8 has APIs for getting the kind of information that DexFileSplitter uses (the "inspection" API), however they're not designed to be used in a tight loop like...

One workaround is to exclude the zip artifacts (assuming the code doesn't need them): ``` maven_install( artifacts = [ "com.sun.xml.bind:jaxb-ri:3.0.2", ], excluded_artifacts = [ "com.sun.xml.bind:jaxb-samples", "com.sun.xml.bind:jaxb-release-documentation", ], repositories = [...

Hmm, I wasn't able to reproduce this: ``` barest-kotlin$ cat android/app/BUILD.bazel load("@io_bazel_rules_kotlin//kotlin:android.bzl", "kt_android_library") kt_android_library( name = "lib", srcs = ["MainActivity.kt"], visibility = ["//visibility:private"], deps = [ ], ) android_binary( name...