Skip to content

Commit f32032e

Browse files
dulmandakhfacebook-github-bot
authored andcommitted
bump double conversion to 1.1.6 (#19885)
Summary: bump double conversion to 1.1.6. Version 1.1.2 added ARM 64 support, so it's a step to add support for 64bit in RN. Closes #19885 Differential Revision: D8662108 Pulled By: hramos fbshipit-source-id: 446d83eab4df90efed9c08eac912e7f857b7f253
1 parent 770dd38 commit f32032e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ReactAndroid/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def thirdPartyNdkDir = new File("$buildDir/third-party-ndk")
2222

2323
// You need to have following folders in this directory:
2424
// - boost_1_63_0
25-
// - double-conversion-1.1.1
25+
// - double-conversion-1.1.6
2626
// - folly-deprecate-dynamic-initializer
2727
// - glog-0.3.3
2828
// - jsc-headers
@@ -57,16 +57,16 @@ task prepareBoost(dependsOn: boostPath ? [] : [downloadBoost], type: Copy) {
5757
}
5858

5959
task downloadDoubleConversion(dependsOn: createNativeDepsDirectories, type: Download) {
60-
src 'https://github.com/google/double-conversion/archive/v1.1.1.tar.gz'
60+
src 'https://github.com/google/double-conversion/archive/v1.1.6.tar.gz'
6161
onlyIfNewer true
6262
overwrite false
63-
dest new File(downloadsDir, 'double-conversion-1.1.1.tar.gz')
63+
dest new File(downloadsDir, 'double-conversion-1.1.6.tar.gz')
6464
}
6565

6666
task prepareDoubleConversion(dependsOn: dependenciesPath ? [] : [downloadDoubleConversion], type: Copy) {
6767
from dependenciesPath ?: tarTree(downloadDoubleConversion.dest)
6868
from 'src/main/jni/third-party/double-conversion/Android.mk'
69-
include 'double-conversion-1.1.1/src/**/*', 'Android.mk'
69+
include 'double-conversion-1.1.6/src/**/*', 'Android.mk'
7070
filesMatching('*/src/**/*', {fname -> fname.path = "double-conversion/${fname.name}"})
7171
includeEmptyDirs = false
7272
into "$thirdPartyNdkDir/double-conversion"

0 commit comments

Comments
 (0)