Files
notesnook/apps/mobile/native/react-native.config.js
2023-02-20 14:54:44 +05:00

24 lines
334 B
JavaScript

const isGithubRelease = false;
const config = {
commands: require('@callstack/repack/commands'),
project: {
android: {
sourceDir: './android'
}
}
};
if (isGithubRelease) {
config.dependencies = {
"react-native-iap": {
platforms: {
android:null
}
},
}
}
module.exports = config;