-
-
Notifications
You must be signed in to change notification settings - Fork 197
Support static libraries in plugins for iOS. #885
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
Conversation
Can one of the admins verify this patch? |
26dac8d
to
43e7ac0
Compare
if (extension === ".framework") { | ||
this.addDynamicFramework(libraryPath); | ||
} else { | ||
this.$errors.failWithoutHelp("The bundle at %s does not appear to be a dynamic framework package.", libraryPath); |
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.
You can use template strings.
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.
Consider explaining the user how to fix the issue - i.e. - can they use another command?
43e7ac0
to
b8129a9
Compare
} | ||
|
||
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.
Hmm, why does this empty space not trigger the linter? At any rate, please remove it.
|
|
||
this.generateMobulemap(path.join(libDestinationPath, headersSubpath), libraryName); | ||
this.savePbxProj(project).wait(); | ||
}).future<void>()(); |
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.
Tab issues?
8727b13
to
07356fd
Compare
07356fd
to
9abff15
Compare
Rebase current branch onto master. |
ec6a37e
to
e9c8d01
Compare
👍 |
run ci |
e9c8d01
to
43b1ec2
Compare
43b1ec2
to
81be681
Compare
❌ |
✅ |
Support static libraries in plugins for iOS.
Implement ability to use static libraries in iOS projects.
Implement unit tests.
Addresses issue #686