mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-25 16:09:42 +01:00
24 lines
334 B
JavaScript
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;
|