mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
16 lines
502 B
JavaScript
16 lines
502 B
JavaScript
// This file allows specific libraries to be excluded from autolinking.
|
|
// https://github.com/react-native-community/cli/blob/main/docs/autolinking.md
|
|
|
|
module.exports = {
|
|
dependencies: {
|
|
// Disable linking react-native-zip-archive on iOS: it's only used on Android and, unless the
|
|
// minimum iOS version is increased, breaks the iOS build.
|
|
// See https://github.com/mockingbot/react-native-zip-archive/issues/307.
|
|
'react-native-zip-archive': {
|
|
platforms: {
|
|
ios: null,
|
|
},
|
|
},
|
|
},
|
|
};
|