Update to use React Native 0.16

Outside of the ReactExample test, no backwards incompatible changes were needed.
This commit is contained in:
Scott Kyle 2015-12-08 16:59:12 -08:00
parent cf687ffca0
commit 1f2eabeb1a
3 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@
BOOL foundElement = NO;
__block NSString *redboxError = nil;
RCTSetLogFunction(^(RCTLogLevel level, NSString *fileName, NSNumber *lineNumber, NSString *message) {
RCTSetLogFunction(^(RCTLogLevel level, RCTLogSource source, NSString *fileName, NSNumber *lineNumber, NSString *message) {
if (level >= RCTLogLevelError) {
redboxError = message;
}

View File

@ -6,7 +6,7 @@
"start": "react-native start"
},
"dependencies": {
"react-native": "^0.15.0",
"react-native": "^0.16.0",
"realm": "file:../../lib"
}
}

View File

@ -6,7 +6,7 @@
"start": "react-native start"
},
"dependencies": {
"react-native": "^0.15.0",
"react-native": "^0.16.0",
"realm": "file:../../lib",
"realm-tests": "file:../lib"
}