mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
* mobile: reduce app size * editor: substitute all @mdi/js icons at build time * mobile: add script to tree shake icon font file * mobile: fix icon loading * mobile: remove html-entities dep * mobile: add missing icon fonts * mobile: include plain editor * mobile: add missing fonts * mobile: use webpack-bundle * mobile: keep generated fonts in repo * mobile: update fonts * mobile: fix duplicate key warning * mobile: update fonts * mobile: disable gesure on reminder sheet * mobile: update fonts * mobile: reset session correctly on logout * mobile: update icon fonts * mobile: set button action on reminder sheet * mobile: add missing icons * mobile: fix crash * mobile: fix right menus * mobile: remove console.log * mobile: disable bounce effect * mobile: update deps --------- Co-authored-by: Abdullah Atta <abdullahatta@streetwriters.co>
34 lines
561 B
JavaScript
34 lines
561 B
JavaScript
|
|
const isGithubRelease = false;
|
|
const config = {
|
|
commands: require('@callstack/repack/commands'),
|
|
project: {
|
|
android: {
|
|
sourceDir: './android'
|
|
}
|
|
}
|
|
};
|
|
|
|
if (!config.dependencies) config.dependencies = {};
|
|
|
|
config.dependencies['react-native-vector-icons'] = {
|
|
platforms: {
|
|
ios: null,
|
|
},
|
|
}
|
|
|
|
if (isGithubRelease) {
|
|
config.dependencies["react-native-iap"] = {
|
|
platforms: {
|
|
android:null
|
|
}
|
|
}
|
|
config.dependencies["react-native-in-app-review"] = {
|
|
platforms: {
|
|
android: null
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = config;
|