Skip to content
This repository has been archived by the owner on Aug 1, 2019. It is now read-only.

Commit

Permalink
Add support for Carthage
Browse files Browse the repository at this point in the history
  • Loading branch information
a-ono authored and Akihiro Ono committed Sep 9, 2016
1 parent 0a3f9f7 commit 6ecd644
Show file tree
Hide file tree
Showing 6 changed files with 612 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ build/
DerivedData/
Pods/
Podfile.lock
Carthage/
Cartfile.resolved
*.xcworkspace

## Various settings
Expand Down
1 change: 1 addition & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github "facebook/AsyncDisplayKit" "1.9.80"
26 changes: 26 additions & 0 deletions nMessenger-iOS/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?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>en</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>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
11 changes: 11 additions & 0 deletions nMessenger-iOS/nMessenger-iOS.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#import <UIKit/UIKit.h>

//! Project version number for nMessenger-iOS.
FOUNDATION_EXPORT double nMessenger_iOSVersionNumber;

//! Project version string for nMessenger-iOS.
FOUNDATION_EXPORT const unsigned char nMessenger_iOSVersionString[];

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


Loading

0 comments on commit 6ecd644

Please sign in to comment.