-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
missing depens 'AnyLinkKit' when flutter run for iOS #1
Comments
sorry for need some time to polish |
Very much looking forward to it.💪💪💪 |
I'm not so familiar with xcode development and try it your self |
thx! and i will try it. |
Copied from OpenAI:To create an XCFramework in Swift, you can use the Swift Package Manager (SPM) to build and manage your package, then follow these steps to create the XCFramework. XCFrameworks are useful for supporting multiple platforms and architectures in a single package, which is ideal for distributing libraries. Steps to Create an XCFramework
Using the XCFramework in Swift Package ManagerTo distribute the XCFramework via SPM, update your let package = Package(
name: "YourLibrary",
platforms: [.iOS(.v13), .macOS(.v10_15)],
products: [
.library(name: "YourLibrary", targets: ["YourLibrary"]),
],
targets: [
.binaryTarget(
name: "YourLibrary",
path: "./YourLibrary.xcframework"
),
]
) Now, developers can add your package to their projects as an XCFramework-based dependency. This approach ensures compatibility across different platforms and architectures. |
hello
when i try to compile and run for iOS, found issue 'AnyLinkKit' is missing.
so i open the Runner.xcworkspace i found '../../sslcon/AnyLink-apple' those keyword
i hope to the ‘sslcon for apple(AnylinkKit)’ can be release source project or binary
thanks
The text was updated successfully, but these errors were encountered: