Skip to content

Commit

Permalink
✨[feat]: provision 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy-wonji committed Jan 7, 2024
1 parent 0e7b60d commit f1be083
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ extension Settings {
.debug(name: .debug, settings: [
"PRODUCT_NAME" : "\(Project.Environment.appName)",
"DISPLAY_NAME" : "\(Project.Environment.appName)",
"PROVISIONING_PROFILE_SPECIFIER": "BeatMaster",
"OTHER_LDFLAGS": [
"-all_load", // Set the strip style to non-global symbols
],
Expand All @@ -39,6 +40,7 @@ extension Settings {
.debug(name: "Dev", settings: [
"PRODUCT_NAME" : "\(Project.Environment.appDevName)",
"DISPLAY_NAME" : "\(Project.Environment.appDevName)",
"PROVISIONING_PROFILE_SPECIFIER": "BeatMaster",
"OTHER_LDFLAGS": [
"-all_load", // Set the strip style to non-global symbols
],
Expand All @@ -51,6 +53,7 @@ extension Settings {
"DEVELOPMENT_ASSET_PATHS": "\"Resources/Preview Content\"",
"PRODUCT_NAME" : "\(Project.Environment.appName)" ,
"DISPLAY_NAME" : "\(Project.Environment.appName)" ,
"PROVISIONING_PROFILE_SPECIFIER": "BeatMaster",
"OTHER_LDFLAGS": [
"-all_load",
],
Expand All @@ -65,12 +68,13 @@ extension Settings {
base: ["PRODUCT_NAME": "\(Project.Environment.appName)",
"MARKETING_VERSION": .string(.appVersion()),
"CURRENT_PROJECT_VERSION": .string(.appBuildVersion()),
// "CODE_SIGN_STYLE": "Automatic",
"CODE_SIGN_STYLE": "Automatic",
"DEVELOPMENT_TEAM": "\(Project.Environment.organizationTeamId)",
"DEBUG_INFORMATION_FORMAT": "DWARF with dSYM File"],
configurations: [
.debug(name: .debug, settings: [
"PRODUCT_NAME": "\(Project.Environment.appName)",
"PROVISIONING_PROFILE_SPECIFIER": "BeatMaster",
"OTHER_LDFLAGS": [
"-all_load", // Set the strip style to non-global symbols
],
Expand All @@ -80,6 +84,7 @@ extension Settings {
]),
.release(name: .release, settings: [
"PRODUCT_NAME": "\(Project.Environment.appName)",
"PROVISIONING_PROFILE_SPECIFIER": "BeatMaster",
"OTHER_LDFLAGS": [
"-all_load",
],
Expand Down
3 changes: 2 additions & 1 deletion BeatMaster/BeatMaster/Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ let project = Project.makeAppModule(
settings: .appMainSetting,
dependencies: [
.Core(implements: .Core),
.Shared(implements: .Shareds)
.Shared(implements: .Shareds),
.Networking(implements: .Networkings)

],
sources: ["Sources/**"],
Expand Down

0 comments on commit f1be083

Please sign in to comment.