From 488862dd0db93eaafaf433f6149d5be22a05350c Mon Sep 17 00:00:00 2001 From: Dimitar Tachev Date: Wed, 9 Oct 2019 11:17:38 +0300 Subject: [PATCH] feat: expose the NDK revision used to build the V8 and the Runtime The version will be used by the V8 Snapshot Webpack plugin in order to build the V8 Snapshot using the same Android NDK version. > The revision could be found in the `source.properties` file from the root NDK folder. --- build-artifacts/project-template-gradle/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-artifacts/project-template-gradle/settings.json b/build-artifacts/project-template-gradle/settings.json index 38b0268a8..9c20ac53f 100644 --- a/build-artifacts/project-template-gradle/settings.json +++ b/build-artifacts/project-template-gradle/settings.json @@ -1,4 +1,5 @@ { "v8Version": "7.7.299.11", + "ndkRevision": "20.0.5594570", "mksnapshotParams": "--profile_deserialization --turbo_instruction_scheduling --target_os=android --no-native-code-counters" -} \ No newline at end of file +}