简体   繁体   中英

import jwt from swift cocoa touch framework

I am working on swift cocoa touch framework to create reusable framework from mobile application.

my framework need to use jwt project from https://github.com/vapor/jwt.git

i tried to create Package.swift and then add .package(url:"https://github.com/vapor/jwt.git", from: "3.0.0") and then run swift package resolve

in my code, i import jwt library like this

import JWT
import Foundation

but i got the error No such module 'JWT'

i am newbie on swift, can someone help please?

my Package.swift is here

// swift-tools-version:4.2
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
    name: "edoc-sdk-swift",
    products: [
        // Products define the executables and libraries produced by a package, and make them visible to other packages.
        .library(
            name: "edoc-sdk-swift",
            targets: ["edoc-sdk-swift"]),
    ],
    dependencies: [
        .package(url:"https://github.com/vapor/jwt.git", from: "3.0.0")
    ],
    targets: [
        // Targets are the basic building blocks of a package. A target can define a module or a test suite.
        // Targets can depend on other targets in this package, and on products in packages which this package depends on.
        .target(
            name: "edoc-sdk-swift",
            dependencies: ["JWT"]),
        .testTarget(
            name: "edoc-sdk-swiftTests",
            dependencies: ["edoc-sdk-swift"]),
    ]
)

You should check two things:

  1. Module name is JWT , not jwt .
  2. Check that your .target in Package.swift contains "JWT" in dependencies

thanks all guys for the feedback.

now i can solve the problem, and i write the solution to this blog

https://piggyman007.blogspot.com/2018/12/create-swift-framework-and-include-some.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM