Skip to content

Commit

Permalink
Fixed framework
Browse files Browse the repository at this point in the history
  • Loading branch information
izyumkin committed Dec 25, 2022
1 parent 2157da0 commit aec4278
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MCEmojiPicker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Pod::Spec.new do |s|
s.authors = { 'Ivan Izyumkin' => '[email protected]' }

s.source = { :git => 'https://github.com/izyumkin/MCEmojiPicker.git', :tag => s.version.to_s }
s.source_files = 'Sources/*.swift'
s.source_files = 'Sources/MCEmojiPicker/**/*.swift'
s.swift_version = '4.2'
s.platform = :ios, '11.1'

Expand Down
10 changes: 10 additions & 0 deletions MCEmojiPicker.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
C4346B37295842B100817147 /* MCEmojiPickerViewModelProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCEmojiPickerViewModelProtocol.swift; sourceTree = "<group>"; };
C4346B38295842B100817147 /* MCUnicodeManagerProtocol.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCUnicodeManagerProtocol.swift; sourceTree = "<group>"; };
C4346B3A295842B100817147 /* MCUnicodeManager.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCUnicodeManager.swift; sourceTree = "<group>"; };
C4D457132958455B00CF8345 /* MCEmojiPicker.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MCEmojiPicker.h; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -91,6 +92,7 @@
isa = PBXGroup;
children = (
C4346B13295842B100817147 /* MCEmojiPicker */,
C4D457122958451F00CF8345 /* Supporting Files */,
);
path = Sources;
sourceTree = "<group>";
Expand Down Expand Up @@ -237,6 +239,14 @@
path = Services;
sourceTree = "<group>";
};
C4D457122958451F00CF8345 /* Supporting Files */ = {
isa = PBXGroup;
children = (
C4D457132958455B00CF8345 /* MCEmojiPicker.h */,
);
path = "Supporting Files";
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
Expand Down
Binary file not shown.
32 changes: 32 additions & 0 deletions Sources/Supporting Files/MCEmojiPicker.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
// The MIT License (MIT)
// Copyright © 2022 Ivan Izyumkin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

#import <UIKit/UIKit.h>

//! Project version number for MCEmojiPicker.
FOUNDATION_EXPORT double MCEmojiPickerVersionNumber;

//! Project version string for MCEmojiPicker.
FOUNDATION_EXPORT const unsigned char MCEmojiPickerVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <MCEmojiPicker/PublicHeader.h>


0 comments on commit aec4278

Please sign in to comment.