[Bugfix] Location library naming (#8)
This PR contains a bugfix that appeared while I started working on the app itself. Basically, the app was not building as the compiler was complaining about duplicated files in the project, but given that I couldn't find any, then I found out that the compiler doesn't like that a library name and an app target share the same name. So I renamed the `Locations` library in the **Libraries** package as `Remote` (for the lack of a better word...) to fix this issue that was stopping me from continue working on implementing the app. Co-authored-by: Javier Cicchelli <javier@rock-n-code.com> Reviewed-on: rock-n-code/deep-linking-assignment#8
This commit is contained in:
parent
9172827b8b
commit
d51cc97aa4
@ -13,8 +13,8 @@ let package = Package(
|
|||||||
targets: [
|
targets: [
|
||||||
"Core",
|
"Core",
|
||||||
"Dependency",
|
"Dependency",
|
||||||
"Locations",
|
"Persistence",
|
||||||
"Persistence"
|
"Remote"
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@ -33,15 +33,15 @@ let package = Package(
|
|||||||
dependencies: []
|
dependencies: []
|
||||||
),
|
),
|
||||||
.target(
|
.target(
|
||||||
name: "Locations",
|
name: "Persistence",
|
||||||
|
dependencies: []
|
||||||
|
),
|
||||||
|
.target(
|
||||||
|
name: "Remote",
|
||||||
dependencies: [
|
dependencies: [
|
||||||
"APICore"
|
"APICore"
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
.target(
|
|
||||||
name: "Persistence",
|
|
||||||
dependencies: []
|
|
||||||
),
|
|
||||||
.testTarget(
|
.testTarget(
|
||||||
name: "APICoreTests",
|
name: "APICoreTests",
|
||||||
dependencies: [
|
dependencies: [
|
||||||
@ -60,18 +60,18 @@ let package = Package(
|
|||||||
"Dependency"
|
"Dependency"
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
.testTarget(
|
|
||||||
name: "LocationsTests",
|
|
||||||
dependencies: [
|
|
||||||
"APICore",
|
|
||||||
"Locations"
|
|
||||||
]
|
|
||||||
),
|
|
||||||
.testTarget(
|
.testTarget(
|
||||||
name: "PersistenceTests",
|
name: "PersistenceTests",
|
||||||
dependencies: [
|
dependencies: [
|
||||||
"Persistence"
|
"Persistence"
|
||||||
]
|
]
|
||||||
),
|
),
|
||||||
|
.testTarget(
|
||||||
|
name: "RemoteTests",
|
||||||
|
dependencies: [
|
||||||
|
"APICore",
|
||||||
|
"Remote"
|
||||||
|
]
|
||||||
|
),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user