mirror of
https://github.com/flutter/samples.git
synced 2026-04-16 20:12:15 +00:00
29 lines
793 B
Swift
29 lines
793 B
Swift
// swift-tools-version: 5.9
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "FlutterGeneratedPluginSwiftPackage",
|
|
platforms: [
|
|
.iOS("13.0")
|
|
],
|
|
products: [
|
|
.library(name: "FlutterGeneratedPluginSwiftPackage", type: .static, targets: ["FlutterGeneratedPluginSwiftPackage"])
|
|
],
|
|
dependencies: [
|
|
.package(name: "url_launcher_ios", path: "../.packages/url_launcher_ios")
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "FlutterGeneratedPluginSwiftPackage",
|
|
dependencies: [
|
|
.product(name: "url-launcher-ios", package: "url_launcher_ios")
|
|
]
|
|
)
|
|
]
|
|
)
|