polydice / ICInputAccessory

A customized token text field used in the iCook app.
http://polydice.com/ICInputAccessory/
MIT License
52 stars 18 forks source link

Fix The Embedded Standard Library Issue #32

Closed bcylin closed 5 years ago

bcylin commented 5 years ago

This should fix #31 by removing ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES from the framework build settings.

The built framework bundle will be:

ICInputAccessory.framework
├── Assets.car
├── Headers
│   ├── ICInputAccessory-Swift.h
│   └── ICInputAccessory.h
├── ICInputAccessory
├── Info.plist
└── Modules
    ├── ICInputAccessory.swiftmodule
    │   ├── arm.swiftdoc
    │   ├── arm.swiftmodule
    │   ├── arm64.swiftdoc
    │   ├── arm64.swiftmodule
    │   ├── i386.swiftdoc
    │   ├── i386.swiftmodule
    │   ├── x86_64.swiftdoc
    │   └── x86_64.swiftmodule
    └── module.modulemap
dlackty commented 5 years ago

Looks good to me. Thanks @bcylin!