1.0.3 • Published 8 years ago
react-native-rctbridge-logger v1.0.3
RCT Bridge Logger
Allows react-native to print to the native logs from Javascript.
Usage
import RNRctLogger from 'react-native-rctbridge-logger';
...
RNRctLogger.log('TAG', 'This is a message from react-native')
> adb logcat | grep TAG
02-01 14:51:22.114 22397 22517 V RNRctLogger: TAG This is a message from react-native
Getting started
$ npm install react-native-rctbridge-logger --save
Mostly automatic installation
$ react-native link react-native-rctbridge-logger
Manual installation
iOS
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-rctbridge-logger
and addRNRctLogger.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNRctLogger.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
Android
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.connectedlab.RNRctLoggerPackage;
to the imports at the top of the file - Add
new RNRctLoggerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-rctbridge-logger' project(':react-native-rctbridge-logger').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-rctbridge-logger/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-rctbridge-logger')