Simon Nickel

Results 2 comments of Simon Nickel

With my previous Analytics solution I usually created a Test and Production analytics instance. This would be the alternative to deleting the database and allows to still try things out...

An example of a Package.swift file: ``` Package( name: "PackageName", products: [ .library( name: "PackageName", targets: ["PackageName"] ), ], dependencies: [ .package(path: "../AnotherPackage"), .package(path: "../OtherPackage"), ], targets: [ .target( name:...