反应原生链接 - 重复的调用不断附加到配置文件



React Native Link 似乎不会解析以前对配置文件的更改,而是进行增量、重复的更改。

例如,android/app/build.gradle开头为:

dependencies {
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
}

首次调用react-native link

dependencies {
  compile project(':react-native-vector-icons')
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
}

第二次调用后...

dependencies {
  compile project(':react-native-vector-icons')
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
  compile project(':react-native-vector-icons')
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
}

等等..

有什么好地方可以开始我的调查吗?

嘿,你的答案就在那里:反应原生链接导致 Android 设置中的重复导入.gradle

它目前正在 PR 中并正在测试中。

最新更新