Fix missing watch extension resources

This commit is contained in:
Ilya Laktyushin 2019-11-07 19:06:16 +04:00
parent 36742d44dd
commit 1604a38548

9
BUCK
View File

@ -432,6 +432,14 @@ apple_resource(
visibility = ["PUBLIC"],
)
apple_resource(
name = "WatchAppExtensionResources",
files = glob([
"Watch/Extension/Resources/**/*",
], exclude = ["Watch/Extension/Resources/**/.*"]),
visibility = ["PUBLIC"],
)
apple_binary(
name = "WatchAppExtensionBinary",
srcs = glob([
@ -467,6 +475,7 @@ apple_binary(
],
deps = [
":WatchAppStringResources",
":WatchAppExtensionResources",
],
)