React Native无法在发行版中编译

时间:2018-09-17 13:12:34

标签: android react-native react-native-camera

我用react-native-camera和另一个库将我的项目编译到android。

当我尝试使用以下代码在发行版中编译项目时:

compile (project(':react-native-camera')) { 
  exclude group: "com.google.android.gms" 
  exclude group: "com.android.support"  
}

我收到此错误:

  

com.android.build.api.transform.TransformException:   java.util.zip.ZipException:重复项:   com / facebook / infer / annotation / Assertions.class

所以我尝试编译添加infe-annotation而不编译

compile (project(':react-native-camera')) {
  exclude group: "com.google.android.gms"
  exclude group: "com.android.support"
  exclude group: "com.facebook.infer.annotation"  
}

编译以发布但不运行该应用程序。

0 个答案:

没有答案