mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
40 lines
662 B
JavaScript
40 lines
662 B
JavaScript
|
|
const isGithubRelease = false;
|
|
const config = {
|
|
commands: require('@callstack/repack/commands/rspack'),
|
|
project: {
|
|
android: {
|
|
sourceDir: './android'
|
|
}
|
|
}
|
|
};
|
|
|
|
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;
|