mirror of
https://github.com/zoriya/react-native-svg.git
synced 2025-12-05 22:56:11 +00:00
Most of Android changes for Fabric and bump of FabricExample to RN 0.69.2. iOS and JS changes are available in #1821. The most notable change on Android is adding methods to components that accept String values of each NumberProp instead of Dynamic. Another change is changed structure of RenderableViewManager.java since we needed to abstract methods that belong only to components inheriting from VirtualView in order to be able to properly override them in their children.
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
SVG_COMMON_THIS_DIR := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_PATH := $(SVG_COMMON_THIS_DIR)
|
|
LOCAL_MODULE := rnsvg_common
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH) $(GENERATED_SRC_DIR)/codegen/jni
|
|
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/**/*.cpp)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_PATH) $(GENERATED_SRC_DIR)/codegen/jni
|
|
|
|
# Please note as one of the library listed is libreact_codegen_samplelibrary
|
|
# This name will be generated as libreact_codegen_<library-name>
|
|
# where <library-name> is the one you specified in the Gradle configuration
|
|
LOCAL_SHARED_LIBRARIES := libjsi \
|
|
libfbjni \
|
|
libglog \
|
|
libfolly_runtime \
|
|
libyoga \
|
|
libreact_nativemodule_core \
|
|
libturbomodulejsijni \
|
|
librrc_view \
|
|
libreact_render_core \
|
|
libreact_render_graphics \
|
|
libfabricjni \
|
|
libreact_debug \
|
|
libreact_render_componentregistry \
|
|
libreact_render_debug \
|
|
libruntimeexecutor \
|
|
libreact_codegen_rncore \
|
|
libreact_codegen_rnsvg
|
|
|
|
LOCAL_CFLAGS := \
|
|
-DLOG_TAG=\"ReactNative\"
|
|
LOCAL_CFLAGS += -fexceptions -frtti -std=c++17 -Wall
|
|
|
|
include $(BUILD_SHARED_LIBRARY) |