-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
apple_framework_packing
with link_dynamic=true
will cause error
#702
Comments
I don't see any reference to |
+1 couldn't find any reference to |
@mattrobmattrob @thiagohmcruz sure, i have created a simple project here and run fyi: I could find any test case for this specific configuration; the one available is for static packing. this is the full log and the stack trace
|
Why are you using load("@build_bazel_rules_ios//rules:framework.bzl", "apple_framework")
apple_framework(
name = "Bar",
srcs = glob(['**/*.swift']),
bundle_id = "com.example.bar",
infoplists = ["Info.plist"],
link_dynamic = True,
platforms = {"ios": "12.0"},
visibility = ["//visibility:public"],
) And, similarly, you should be using the
|
Additionally, it seems like you're mixing a lot of rules_apple/rules_swift native stuff with rules_ios things. Why are you doing that vs. just using entirely rules_ios? For example, you can swap the
|
@mattrobmattrob my usecase is to generate a precompiled framework, you should use |
I am also interested on this: how to generate a precompiled framework for third party distribution |
the error
The text was updated successfully, but these errors were encountered: