-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Framework working with Carthage and CocoaPods. #19
Conversation
AutoCompletion.podspec
Outdated
s.platform = :ios, "9.0" | ||
s.source = { :git => "https://github.com/3pillarlabs/ios-autocomplete.git", :tag => "#{s.version}" } | ||
s.source_files = "Framework/AutoCompletion/AutoCompletion", "Framework/AutoCompletion/AutoCompletion/**/*.{h,m}" | ||
s.exclude_files = "Classes/Exclude" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove exclude_files, does not seem to be needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed.
AutoCompletion.podspec
Outdated
s.version = "1.2.1" | ||
s.summary = "Text auto completion framework." | ||
s.description = "Library can be used via cocoapods in any project." | ||
s.homepage = "https://github.com/3pillarlabs/ios-autocomplete/tree/AutoCompleteFramework" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/3pillarlabs/ios-autocomplete
should be the home page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.
Podspec and readme updated.
Since we're providing the framework through dependency managers, we should remove the compiled framework since that was causing the in issue #18. |
Removed compiled framework and updated readme file.
Framework functional with dependency managers(CocoaPods/Carthage), demo app removed from branch.