Files
notesnook/apps/mobile/react-native.config.js
Abdullah Atta 3de225f7c9 mobile: upgrade react native 0.82
this commit also bump app version to 3.3.10-beta.0
2025-11-27 11:32:50 +05:00

34 lines
594 B
JavaScript

const isGithubRelease = false;
const config = {
commands: require("@callstack/repack/commands/rspack")
};
if (!config.dependencies) config.dependencies = {};
config.dependencies["react-native-vector-icons"] = {
platforms: {
ios: null
}
};
config.dependencies["react-native-screenguard"] = {
platforms: {
android: null
}
};
if (isGithubRelease) {
config.dependencies["react-native-iap"] = {
platforms: {
android: null
}
};
config.dependencies["react-native-in-app-review"] = {
platforms: {
android: null
}
};
}
module.exports = config;