repetitive似乎不解析以前对配置文件的更改,而是进行增量的、重复的更改。
例如,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')
}以此类推。
有什么地方可以开始我的调查吗?
发布于 2018-03-05 16:07:53
嘿,你的答案是:react-native link causes duplicate imports in Android settings.gradle
目前正在进行公关和测试。
https://stackoverflow.com/questions/49113438
复制相似问题