我用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"
}
编译以发布但不运行该应用程序。