Jonathan Schear
Jonathan Schear
After upgrading to AGP 4.0.0, our `clearOkReplayTapes` task is failing with a `NoClassDefFoundError`. It looks like `ConnectedDeviceProvider` was moved to the `com.android.build.gradle.internal.testing` package. I tried upgrading the AGP dependency in...
AGP 4+ contains new APIs for accessing build variants (and the APKs produced for each of them), and the existing APIs have been deprecated. The main differences appear to be:...
### Expected Behavior No exception should be thrown. ### Current Behavior A `java.util.ConcurrentModificationException` is thrown. ### Context I'm running a task defined by the [SQLDelight Gradle plugin](https://github.com/cashapp/sqldelight) (using version 1.5.1)....
This turned out to be more of a parsing issue -- `##foo` was not being parsed as a doc comment. The formatting code already adds a space between `##` and...
### Description I'm trying to migrate a project to depend on external swift dependencies via `rules_swift_package_manager`. When a `rules_ios` `apple_framework` depends on a target generated by `rules_swift_package_manager`, it appears that...
I'm using a feature flag to migrate from usage of one macro to another in a Bazel codebase, using roughly this structure: ```starlark def func1(): pass def func2(): pass my_func...
`rules_swift`'s `swift_library` has a [swiftc_inputs](https://github.com/bazelbuild/rules_swift/blob/master/doc/rules.md#swift_library-swiftc_inputs) attribute, which serves as a way to pass labels that are used in `$(location)` expansion in other attributes. There are a few places in `rules_swift`...