react-native-debug-toolkit
Version:
A simple yet powerful debugging toolkit for React Native with a convenient floating UI for development
18 lines (17 loc) • 398 B
JavaScript
// react-native.config.js
module.exports = {
// Let React Native's auto-linking handle all dependencies normally
dependencies: {
"react-native-debug-toolkit": {
platforms: {
ios: {
podspecPath: "./react-native-debug-toolkit.podspec",
sourceDir: "./ios"
},
// android: {
// sourceDir: "./android"
// }
}
}
}
};