BlueWallet/react-native.config.js
2026-03-28 21:26:48 +00:00

30 lines
744 B
JavaScript

const path = require('path');
module.exports = {
project: {
android: {},
ios: {},
},
dependencies: {
'react-native-context-menu-view': {
root: path.resolve(__dirname, 'node_modules/react-native-context-menu-view'),
platforms: {
ios: {
podspecPath: path.resolve(__dirname, 'node_modules/react-native-context-menu-view/react-native-context-menu-view.podspec'),
},
android: {
sourceDir: path.resolve(__dirname, 'node_modules/react-native-context-menu-view/android'),
},
},
},
},
codegenConfig: {
name: 'BlueWalletSpec',
type: 'all',
jsSrcsDir: './codegen',
android: {
javaPackageName: 'io.bluewallet.bluewallet',
},
},
};