We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b6ad05 commit b7ec706Copy full SHA for b7ec706
README.md
@@ -120,6 +120,21 @@ To use this variant instead replace the third installation step with:
120
121
See **[Measurements](/measure)** page that contains synthetic perf test results for the most notable versions of JSC we have tried.
122
123
+## Troubleshooting
124
+
125
+Compile errors of the sort:
126
+```shell
127
+More than one file was found with OS independent path 'lib/armeabi-v7a/libgnustl_shared.so'
128
+```
129
130
+Add the following to your `app/build.gradle`, under `android`:
131
132
+```groovy
133
+packagingOptions {
134
+ pickFirst '**/libgnustl_shared.so'
135
+}
136
137
138
## Resources
139
- [WebkitGTK Sources](https://svn.webkit.org/repository/webkit/releases/WebKitGTK/)
140
- [ICU Sources](https://android.googlesource.com/platform/external/icu/)
0 commit comments