如何在 React Native 0.60 中的"yarn install"后自动链接资产



所以我有我的自定义库my-library,有一个react-native.config.js文件。

module.exports = {
dependency: {
assets: ['Fonts'],    // This lib contains custom fonts.
}
};

当我在其他项目中的某个地方yarn install my-library时,我需要手动运行react-native link my-library以使字体在我的应用程序中可用。

是否可以在yarn install上自动链接它?

阅读此 https://facebook.github.io/react-native/blog/2019/07/03/version-60#native-modules-are-now-autolinked

在大多数情况下,您不再需要运行react-native link

相关内容

  • 没有找到相关文章

最新更新