Files
cureselect-weighingscale-sdk/example/react-native.config.js
T

22 lines
447 B
JavaScript
Raw Normal View History

2025-12-16 14:54:44 +05:30
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: {},
},
},
},
};