- th3rd wave (https://itunes.apple.com/ca/app/th3rd-wave/id1117576488?mt=8)
- words with friends 2 (https://itunes.apple.com/us/app/words-with-friends-2-word-game/id1196764367?mt=8)
- bloomberg (https://actualbudget.com/)
- urban dictionary (https://itunes.apple.com/ca/app/urban-dictionary/id584986228?mt=8)
- gyroscope (https://gyrosco.pe/)
- rocket.chat (https://rocket.chat)
- saffron (https://play.google.com/store/apps/details?id=com.awad.saffron)
- scooter map (https://scootermap.com/)
- actual (https://actualbudget.com/)
- drivetribe (https://drivetribe.com/ - https://itunes.apple.com/us/app/drivetribe/id1164159977?mt=8 / https://play.google.com/store/apps/details?id=com.drivetribe&hl=en_CA)
| #import "AppDelegate.h" | |
| #import <React/RCTBundleURLProvider.h> | |
| #import <React/RCTRootView.h> | |
| #import <ReactNativeNavigation/ReactNativeNavigation.h> | |
| @implementation AppDelegate | |
| - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions | |
| { |
| #import <UIKit/UIKit.h> | |
| #import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
| #import <React/RCTBridgeDelegate.h> | |
| @interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate> | |
| @property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; | |
| @property (nonatomic, strong) UIWindow *window; | |
| @end |
| #import <UIKit/UIKit.h> | |
| #import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
| #import <React/RCTBridgeDelegate.h> | |
| @interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate> | |
| @property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; | |
| @property (nonatomic, strong) UIWindow *window; | |
| @end |
| package com.myapp; | |
| import android.app.Application; | |
| import com.facebook.react.ReactApplication; | |
| import com.facebook.react.ReactNativeHost; | |
| import com.facebook.react.ReactPackage; | |
| import com.facebook.react.shell.MainReactPackage; | |
| import com.facebook.soloader.SoLoader; |
| #import <UIKit/UIKit.h> | |
| #import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
| #import <React/RCTBridgeDelegate.h> | |
| @interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate> | |
| @property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; | |
| @property (nonatomic, strong) UIWindow *window; | |
| @end |
| #import <UIKit/UIKit.h> | |
| #import <UMReactNativeAdapter/UMModuleRegistryAdapter.h> | |
| #import <React/RCTBridgeDelegate.h> | |
| @interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate> | |
| @property (nonatomic, strong) UMModuleRegistryAdapter *moduleRegistryAdapter; | |
| @property (nonatomic, strong) UIWindow *window; | |
| @end |
We started building expo-firebase based off of react-native-firebase in order to attempt to get it to work well within the Expo client. It turned out that there wasn't a good way to do this - the SDK fully expects that there is one binary per app, and the Expo client has multiple apps inside of it. We weren't able to work around this.
If you'd like to use Firebase in the Expo client with the managed workflow, we'd recommend using the Firebase JS SDK. It supports Firebase Realtime Database and Firebase Storage. If you'd like access to the full suite of native firebase tools, we recommend using the bare workflow and react-native-firebase, because we cannot support this in the Expo client currently.
- Firebase JS SDK: https://github.com/firebase/firebase-js-sdk
- React Native Firebase: https://github.com/invertase/react-native-firebase
πππππππππππππππππ
| - A cartoon intro to Fiber - https://www.youtube.com/watch?v=ZCuYPiUIONs | |
| - State of React Native 2018 - http://facebook.github.io/react-native/blog/2018/06/14/state-of-react-native-2018 | |
| - Fabric Proposal - https://github.com/react-native-community/discussions-and-proposals/issues/4 | |
| - View flattening with Fabric - https://cl.ly/950e8fb4da6d | |
| - An informal talk about Fabric at Facebook - https://www.facebook.com/hramos/videos/10101317533036249/ | |
| - React Native's New Architecture - https://www.youtube.com/watch?v=UcqRXTriUVI |