You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix cppruntime duplicated package name causes build error (#97)
Summary:
Gradle will have a build error during generating APK if user depends
both android-jsc and android-jsc-cppruntime.
```
> Task :app:transformDexArchiveWithExternalLibsDexMergerForDebug FAILED
D8: Program type already present: org.webkit.androidjsc.BuildConfig
```
The reason is that gradle will generate BuildConfig from each libraries and
there are two duplicated org.webkit.androidjsc.BuildConfig.
Test Plan:
Pure RN 0.57 + JSC from this repo (build locally or from CircleCI).
To test if gradle could generate APK successfully.
0 commit comments