-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support for carthage framework
- Loading branch information
Showing
6 changed files
with
193 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>$(DEVELOPMENT_LANGUAGE)</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>$(MARKETING_VERSION)</string> | ||
<key>CFBundleVersion</key> | ||
<string>$(CURRENT_PROJECT_VERSION)</string> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// | ||
// JLNFCReaderWriter.h | ||
// JLNFCReaderWriter | ||
// | ||
// Created by janlionly on 2020/6/5. | ||
// Copyright © 2020 janlionly. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
//! Project version number for JLNFCReaderWriter. | ||
FOUNDATION_EXPORT double JLNFCReaderWriterVersionNumber; | ||
|
||
//! Project version string for JLNFCReaderWriter. | ||
FOUNDATION_EXPORT const unsigned char JLNFCReaderWriterVersionString[]; | ||
|
||
// In this header, you should import all the public headers of your framework using statements like #import <JLNFCReaderWriter/PublicHeader.h> | ||
#if __has_include("NFCConstants.h") | ||
#import <JLNFCReaderWriter/NFCConstants.h> | ||
#endif | ||
|
||
#if __has_include("NFCReaderDelegate.h") | ||
#import <JLNFCReaderWriter/NFCReaderDelegate.h> | ||
#endif | ||
|
||
#if __has_include("NFCReaderWriter.h") | ||
#import <JLNFCReaderWriter/NFCReaderWriter.h> | ||
#endif | ||
|
||
#if __has_include("NFCReader.h") | ||
#import <JLNFCReaderWriter/NFCReader.h> | ||
#endif | ||
|
||
#if __has_include("NFCNDEFReader.h") | ||
#import <JLNFCReaderWriter/NFCNDEFReader.h> | ||
#endif | ||
|
||
#if __has_include("NFCNDEFWriter.h") | ||
#import <JLNFCReaderWriter/NFCNDEFWriter.h> | ||
#endif | ||
|
||
#if __has_include("NFCTagReader.h") | ||
#import <JLNFCReaderWriter/NFCTagReader.h> | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.