chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
@@ -0,0 +1,31 @@
// Hide C++ symbols from C compiler used when building Swift module
#if defined(__cplusplus)
#pragma mark - New architecture definitions
#if RCT_NEW_ARCH_ENABLED
#import <React/RCTViewComponentView.h>
@interface RNSReactBaseView : RCTViewComponentView
@end
#else
#pragma mark - Legacy architecture definitions
#import <React/RCTView.h>
@interface RNSReactBaseView : RCTView
@end
#endif // RCT_NEW_ARCH_ENABLED
#else
NS_ASSUME_NONNULL_BEGIN
@interface RNSReactBaseView : UIView
@end
NS_ASSUME_NONNULL_END
#endif // __cplusplus
@@ -0,0 +1,5 @@
#import "RNSReactBaseView.h"
@implementation RNSReactBaseView
@end
@@ -0,0 +1,7 @@
#pragma once
#if __has_include(<RNScreens/RNScreens-Swift.h>)
#import <RNScreens/RNScreens-Swift.h>
#else
#import "RNScreens-Swift.h"
#endif