Skip to content

Commit b77d5e1

Browse files
authored
Update README.md
1 parent 94687da commit b77d5e1

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,23 @@ defaultConfig {
9494

9595
5. You're done, rebuild your app and enjoy updated version of JSC on android!
9696

97+
### International variant
98+
International variant includes ICU i18n library and necessary data allowing to use e.g. Date.toLocaleString and String.localeCompare that give correct results when using with locales other than en-US. Note that this variant is about 6MiB larger per architecture than default.
99+
100+
To use this variant instead replace the third installation step with:
101+
102+
```diff
103+
+configurations.all {
104+
+ resolutionStrategy {
105+
+ eachDependency { DependencyResolveDetails details ->
106+
+ if (details.requested.name == 'android-jsc') {
107+
+ details.useTarget group: details.requested.group, name: 'android-jsc-intl', version: 'r224109'
108+
+ }
109+
+ }
110+
+ }
111+
+}
112+
```
113+
97114
## Testing
98115

99116
See **[Measurements](/measure)** page that contains synthetic perf test results for the most notable versions of JSC we have tried.

0 commit comments

Comments
 (0)