首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >react本机链接-重复调用始终附加到配置文件中。

react本机链接-重复调用始终附加到配置文件中。
EN

Stack Overflow用户
提问于 2018-03-05 15:07:26
回答 1查看 241关注 0票数 0

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

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

代码语言:javascript
复制
dependencies {
  compile project(':react-native-linear-gradient')
  compile project(':react-native-fcm')
  compile project(':react-native-cookie')
}

第一次调用react-native link之后

代码语言:javascript
复制
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')
}

第二次调用之后..。

代码语言:javascript
复制
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')
}

以此类推。

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

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-03-05 16:07:53

嘿,你的答案是:react-native link causes duplicate imports in Android settings.gradle

目前正在进行公关和测试。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/49113438

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档