Skip to content
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

fix build warnings #60

Merged
merged 1 commit into from
Dec 15, 2020
Merged

fix build warnings #60

merged 1 commit into from
Dec 15, 2020

Conversation

aboedo
Copy link
Member

@aboedo aboedo commented Dec 15, 2020

We have a couple of build warnings:

  • One is because we were missing a header (RCTransactions+HybridAdditions) in the umbrella header

  • The other one is trickier: it's because we have a few methods that we want to have private in the main SDK, but that should be usable by the hybrid sdks. Their implementation relies on private stuff from the main SDK, but since hybridCommon uses it just as any app using the sdk would, it can't access the private files.
    The current solution is to have the implementation live in the main SDK, and just declare it in a header for our use. This triggers a build warning, however, so I'm supressing the build warning specifically for that file in this PR.

…ssed warnings for missing methods that are implemented in the main SDK
@aboedo aboedo requested a review from vegaro December 15, 2020 16:29
@aboedo aboedo self-assigned this Dec 15, 2020
@aboedo aboedo merged commit c29024b into develop Dec 15, 2020
@aboedo aboedo deleted the fix/build_warnings branch December 15, 2020 18:28
@aboedo aboedo mentioned this pull request Dec 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants