Fixing unsolved symbol in RN Android (#1907)
This commit is contained in:
parent
a6fef5254d
commit
48203f8a75
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,3 +1,25 @@
|
|||
X.Y.Z Release notes
|
||||
=============================================================
|
||||
### Compatibility
|
||||
* Sync protocol: 24
|
||||
* Server-side history format: 4
|
||||
* File format: 7
|
||||
* Realm Object Server: 3.0.0 or later
|
||||
|
||||
### Breaking changes
|
||||
* None.
|
||||
|
||||
### Enhancements
|
||||
* None.
|
||||
|
||||
### Bug fixes
|
||||
* Fixed a bug which caused RN Android to fail loading (#1904).
|
||||
|
||||
### Internals
|
||||
* Realm Core v5.6.3.
|
||||
* Realm Sync v3.5.8.
|
||||
|
||||
|
||||
2.11.0 Release notes (2018-6-28)
|
||||
=============================================================
|
||||
### Compatibility
|
||||
|
|
|
@ -48,6 +48,7 @@ LOCAL_SRC_FILES += src/android/io_realm_react_RealmReactModule.cpp
|
|||
LOCAL_SRC_FILES += src/android/jni_utils.cpp
|
||||
LOCAL_SRC_FILES += src/android/jsc_override.cpp
|
||||
LOCAL_SRC_FILES += src/android/platform.cpp
|
||||
LOCAL_SRC_FILES += src/android/hack.cpp
|
||||
LOCAL_SRC_FILES += src/object-store/src/impl/collection_change_builder.cpp
|
||||
LOCAL_SRC_FILES += src/object-store/src/impl/collection_notifier.cpp
|
||||
LOCAL_SRC_FILES += src/object-store/src/impl/list_notifier.cpp
|
||||
|
@ -84,7 +85,6 @@ endif
|
|||
|
||||
# Workaround for memmove/memcpy bug
|
||||
ifeq ($(strip $(TARGET_ARCH_ABI)),armeabi-v7a)
|
||||
LOCAL_SRC_FILES += src/android/hack.cpp
|
||||
BUILD_WRAP_MEMMOVE = 1
|
||||
else
|
||||
BUILD_WRAP_MEMMOVE = 0
|
||||
|
|
Loading…
Reference in New Issue