Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 135 additions & 0 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions bazel/ios/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@ TEAM_ID = "33XQXT255C"

# If needed, change to the name shown by clicking the (i) next to
# "Xcode Managed Profile" in the "Signing and Capabilities" tab
PROFILE_NAME = "iOS Team Provisioning Profile: *"
PROFILE_NAME = "Wildcard"

xcode_provisioning_profile(
name = "ios_provisioning_profile",
managed_by_xcode = True,
managed_by_xcode = False,
profile_name = PROFILE_NAME,
provisioning_profile = ":xcode_managed_profile",
tags = ["manual"],
visibility = ["//visibility:public"],
Expand Down
4 changes: 2 additions & 2 deletions examples/swift/hello_world/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ swift_library(

ios_application(
name = "ios_app",
bundle_id = "io.bitdrift.example.helloworld",
bundle_id = "io.bitdrift.example.swiftapp.helloworld",
entitlements = "Protected.entitlements",
families = [
"iphone",
Expand Down Expand Up @@ -67,7 +67,7 @@ swift_library(

ios_application(
name = "hello_world_app",
bundle_id = "io.bitdrift.example.helloworld",
bundle_id = "io.bitdrift.example.swiftapp.helloworld",
entitlements = "Protected.entitlements",
families = [
"iphone",
Expand Down
Loading