Summary: After `react-native-flipper` 0.48.0 I cannot build releases on android (I think that passed on CI tests because the example was running an older version of this package, 0.47.0). So I moved all the `android/src/main` content to `android/src/debug` because we will not use Flipper in another Build Variant ## Changelog I moved all content from `react-native-flipper/android/src/main` to `react-native-flipper/android/src/debug`. Probably solves https://github.com/facebook/flipper/issues/1303 Pull Request resolved: https://github.com/facebook/flipper/pull/1325 Test Plan: Maybe create a custom CI script to verify if Flipper deps are present on Release Builds, [something like this](https://github.com/facebook/flipper/issues/1274#issue-641197153) Reviewed By: cekkaewnumchai Differential Revision: D22333432 Pulled By: passy fbshipit-source-id: 4abbab5ecbe08d44752b2138569ff60d25724087
36 lines
875 B
JSON
36 lines
875 B
JSON
{
|
|
"name": "ReactNativeFlipperExample",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"android": "relative-deps && react-native run-android",
|
|
"ios": "relative-deps && react-native run-ios",
|
|
"start": "relative-deps && react-native start",
|
|
"prepare": "relative-deps",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"react": "^16.13",
|
|
"react-native": "^0.62.2",
|
|
"react-native-flipper": "^0.49.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.6.2",
|
|
"@babel/runtime": "^7.6.2",
|
|
"babel-jest": "^24.9.0",
|
|
"jest": "^24.9.0",
|
|
"metro-react-native-babel-preset": "^0.58.0",
|
|
"react-test-renderer": "16.11.0",
|
|
"relative-deps": "^1.0.0"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
},
|
|
"relativeDependencies": {
|
|
"react-native-flipper": "../react-native-flipper"
|
|
},
|
|
"resolutions": {
|
|
"minimist": "1.2.3"
|
|
}
|
|
}
|