Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3.9k
[local_auth_darwin] Adds Swift Package Manager compatibility#6708
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,7 @@ | ||
| ## 1.3.0 | ||
| * Adds Swift Package Manager compatibility. | ||
| ## 1.2.2 | ||
| * Adds compatibility with `intl` 0.19.0. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| // swift-tools-version: 5.9 | ||
| // The swift-tools-version declares the minimum version of Swift required to build this package. | ||
| // Copyright 2013 The Flutter Authors. All rights reserved. | ||
| // Use of this source code is governed by a BSD-style license that can be | ||
| // found in the LICENSE file. | ||
| import PackageDescription | ||
| let package = Package( | ||
| name: "local_auth_darwin", | ||
| platforms: [ | ||
| .iOS("12.0"), | ||
| .macOS("10.14"), | ||
| ], | ||
| products: [ | ||
| .library(name: "local-auth-darwin", targets: ["local_auth_darwin"]) | ||
| ], | ||
| dependencies: [], | ||
| targets: [ | ||
| .target( | ||
| name: "local_auth_darwin", | ||
| dependencies: [], | ||
| resources: [ | ||
| .process("Resources") | ||
| ], | ||
| cSettings: [ | ||
| .headerSearchPath("include/local_auth_darwin") | ||
| ] | ||
| ) | ||
| ] | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -4,7 +4,9 @@ | ||
| // Autogenerated from Pigeon (v13.1.2), do not edit directly. | ||
| // See also: https://pub.dev/packages/pigeon | ||
| #import "messages.g.h" | ||
| // The line below is manually edited. See: | ||
| // https://github.com/flutter/flutter/issues/147587 | ||
| #import "./include/local_auth_darwin/messages.g.h" | ||
| ||
| #if TARGET_OS_OSX | ||
| #import <FlutterMacOS/FlutterMacOS.h> | ||
Uh oh!
There was an error while loading. Please reload this page.