To communicate with Android to ReactNative I use RCTEventEmitter. Using this I need parse array to RN side and this array should set on WritableMap object.
On WritableMap object can put Array as shown below,
void putArray(@NonNull String key, @Nullable ReadableArray value);
How to create and add data into ReadableArray ?
I think you're looking for the WritableArray. You can create one like this: