react-native-rate-app/example/react-native.config.js
Hugo EXTRAT 31b07a5d2c
fix: RN 0.78 (#137)
* fix: RN 0.78

* ignore plugin from jest
2025-02-28 19:47:52 +01:00

22 lines
447 B
JavaScript

const path = require('path');
const pkg = require('../package.json');
module.exports = {
project: {
ios: {
automaticPodsInstallation: true,
},
},
dependencies: {
[pkg.name]: {
root: path.join(__dirname, '..'),
platforms: {
// Codegen script incorrectly fails without this
// So we explicitly specify the platforms with empty object
ios: {},
android: {},
},
},
},
};