mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-13 04:51:21 +00:00
1ad4a245f3
* Account tipping * Tryout full flow * Add link params * WIP * Progress flow * Fixes * More progress * Refresh user profile on notification * Tweaks * Fix follow button not refreshing * Refactor proxy url * Code cleanup * Subscribe to a premium account from a standard linked account * Premium posts tab on linked standard account * Fix flow * New domain * Fix flow * More fixes to follow flow * Update so to sub.club * Add colorScheme in URL * rollback domain * Back to sub.club * Use SubClub API for Subscription info * Fix * Merge * Merge branch 'iOS-18' + fixes
47 lines
1.3 KiB
Swift
47 lines
1.3 KiB
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Account",
|
|
defaultLocalization: "en",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.visionOS(.v1),
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Account",
|
|
targets: ["Account"]
|
|
),
|
|
],
|
|
dependencies: [
|
|
.package(name: "Network", path: "../Network"),
|
|
.package(name: "Models", path: "../Models"),
|
|
.package(name: "StatusKit", path: "../StatusKit"),
|
|
.package(name: "Env", path: "../Env"),
|
|
.package(url: "https://github.com/Dean151/ButtonKit", from: "0.1.1"),
|
|
.package(url: "https://github.com/dkk/WrappingHStack", from: "2.2.11"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Account",
|
|
dependencies: [
|
|
.product(name: "Network", package: "Network"),
|
|
.product(name: "Models", package: "Models"),
|
|
.product(name: "StatusKit", package: "StatusKit"),
|
|
.product(name: "Env", package: "Env"),
|
|
.product(name: "ButtonKit", package: "ButtonKit"),
|
|
.product(name: "WrappingHStack", package: "WrappingHStack"),
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency"),
|
|
]
|
|
),
|
|
.testTarget(
|
|
name: "AccountTests",
|
|
dependencies: ["Account"]
|
|
),
|
|
]
|
|
)
|