-
Notifications
You must be signed in to change notification settings - Fork 168
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
Add vendor support to Android blueprints #7614
Conversation
73bd7be
to
cf99a3d
Compare
Pull Request Test Coverage Report for Build lee.maguire_78Details
💛 - Coveralls |
#if REALM_ANDROID && !defined(REALM_AOSP_VENDOR) | ||
#define HAS_ANDROID_ALOOPER | ||
#endif | ||
|
||
#if HAS_ANDROID_ALOOPER |
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 expands either to
#if
or
#if HAS_ANDROID_ALOOPER
causing
/mnt/vcpkg-ci/b/realm-core/src/14.8.0-91fbc84ff4.clean/src/realm/object-store/util/scheduler.cpp:40:24: error: expected value in expression
#if HAS_ANDROID_ALOOPER
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.
Hi @dg0yt the latest master contains a fix for this where it becomes #if defined(HAS_ANDROID_ALOOPER)
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.
Thanks.
This adds vendor support for Android Blueprints and is a prerequisite for RCPP-47
☑️ ToDos