-
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
Changes to integrate with WPiOS app. #69
Merged
+51
−18
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
391909e
Adding podspec file.
etoledom 9946505
Fixing podspec
etoledom c30a625
Changing name of Podspec
etoledom 3e248ec
Rolling back changes made to integrate into main WPiOS app.
etoledom f1142a4
Added image uploader to MediaProvider
etoledom f3207cc
Merge branch 'master' into feature/adding-podspec
etoledom 40a0ea8
Hack to build example proyect.
etoledom 01a46bf
Merge branch 'master' into feature/adding-podspec
etoledom 0ea0a12
Merge branch 'master' into feature/adding-podspec
etoledom be67705
AztecViewManager: Removed custom init to simplify Bridge creations.
etoledom a0dafff
Clean replace the hack to run on WPiOS with another hack that doesn't…
etoledom 09830c4
Merge branch 'feature/adding-podspec' of https://github.com/wordpress…
etoledom 98d377c
RCTAztecViewManager.m: Adding comment to swift header imports.
etoledom 02ca6e7
Commenting `#import "WordPress-Swift.h"`
etoledom 1c576c8
Merge branch 'master' into feature/adding-podspec
etoledom c6c3a5e
Removed unused files
etoledom 9cff3a9
Remove unused file
etoledom b6c8314
Clean up podspec
etoledom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ | ||
require 'json' | ||
|
||
package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'RNTAztecView' | ||
s.version = package['version'] | ||
s.summary = 'Aztec editor for React Native' | ||
s.license = package['license'] | ||
s.homepage = 'https://github.com/wordpress-mobile/react-native-aztec' | ||
s.authors = 'Automattic' | ||
s.source = { :git => 'https://github.com/wordpress-mobile/react-native-aztec.git' } | ||
s.source_files = 'ios/**/*.{h,m,swift}' | ||
s.public_header_files = 'ios/RNTAztecView/*.h' | ||
s.requires_arc = true | ||
s.platforms = { :ios => "10.0" } | ||
s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2', | ||
'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'} | ||
s.dependency 'React' | ||
s.dependency 'WordPress-Aztec-iOS' | ||
|
||
end |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This is a small hack to be able to build WPiOS app. I plan to remove this in the near future.