Files
AFFiNE-Mirror/packages/frontend/apps/ios/App/Packages/AffinePaywall/Package.swift
T
Lakr 8d6f7047c2 fix(ios): build project (#13656)
<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- New Features
- Access Tokens screen now shows revealed access tokens, including the
token value where available.

- Chores
  - Updated iOS Paywall package to use Swift tools version 5.9.
  - Removed an unused internal iOS package to streamline the app.
- Aligned access token data model to the latest backend schema for
improved consistency.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-09-26 10:10:30 +00:00

28 lines
578 B
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: "AffinePaywall",
platforms: [
.iOS(.v16),
.macOS(.v14), // just for build so LLM can verify their code
],
products: [
.library(
name: "AffinePaywall",
targets: ["AffinePaywall"]
),
],
dependencies: [
.package(path: "../AffineResources"),
],
targets: [
.target(
name: "AffinePaywall",
dependencies: ["AffineResources"],
),
]
)