André
André
Hi :), `SwiftInfo` no longer have `swift_version` since PR: https://github.com/bazelbuild/rules_swift/pull/551 ``` File "/private/var/tmp/_bazel_andre.alves/0c8bf54092c40cf2f95e2873be89e4d4/external/xchammer/tulsi/tulsi_aspects.bzl", line 911, column 69, in _tulsi_sources_aspect transitive_attributes["swift_language_version"] = swift_info.swift_version Error: 'SwiftInfo' value has no field or method...
I'm trying to strip frameworks to decrease app size (as suggested by [EmergeTools](https://docs.emergetools.com/docs/strip-binary-symbols)). Here is the `ipa_post_processor`: ```sh #!/bin/bash set -eu WORKDIR="$1" APPDIR="$WORKDIR/Payload" for app in $(find "$APPDIR" -type d...
### Description Given this (simplified) sample: ```python # BazelSample/BUILD.bazel xcodeproj( name = "BazelSampleXcodeProj", build_mode = "bazel", focused_targets = [ ":BazelSampleApp", ":BazelSample", ], project_name = "BazelSample", schemes = [ xcode_schemes.scheme( name...
### Description We recently updated rules_xcodeproj from 1.5.1 to 1.8.1 and started seeing errors in Xcode's background indexer. The `Index Build` tasks are ok, but the background indexer (the one...
[Starting on May 1st](https://developer.apple.com/news/?id=3d8a9yyh), Apple will require that the frameworks on this [list](https://developer.apple.com/support/third-party-SDK-requirements/) are signed (if they are distributed as binary). I didn't find any documentation showing how this validation...