You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am glad you build such a wonderful tool!
However, I met the following error when compiling
I successfully built the workspace, and added the dependency into my app BUILD.bazel
I also added the followind codes in my WORKSPACE, but the compiling error occurs. Thanks for your help!
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
@fchen09 always great to hear how useful this fool is for folks!
The file mentioned in the err message was added in May and rules_ios is definitely pointing to a later version of rules_applefrom June.
So not sure what is going on with your repo but is it possible that you have other configs overriding the version of rules_apple and making it run on an older version that doesn't have the changes above?
Hi,
I am glad you build such a wonderful tool!
However, I met the following error when compiling
I successfully built the workspace, and added the dependency into my app BUILD.bazel
I also added the followind codes in my WORKSPACE, but the compiling error occurs. Thanks for your help!
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "build_bazel_rules_ios",
remote = "https://github.com/bazel-ios/rules_ios.git",
branch = "master",
)
load(
"@build_bazel_rules_ios//rules:repositories.bzl",
"rules_ios_dependencies"
)
rules_ios_dependencies()
load(
"@build_bazel_rules_apple//apple:repositories.bzl",
"apple_rules_dependencies",
)
apple_rules_dependencies()
load(
"@build_bazel_rules_swift//swift:repositories.bzl",
"swift_rules_dependencies",
)
swift_rules_dependencies()
load(
"@build_bazel_apple_support//lib:repositories.bzl",
"apple_support_dependencies",
)
apple_support_dependencies()
load(
"@com_google_protobuf//:protobuf_deps.bzl",
"protobuf_deps",
)
protobuf_deps()
The text was updated successfully, but these errors were encountered: