Skip to content

Commit

Permalink
use explicit jsc version to test
Browse files Browse the repository at this point in the history
  • Loading branch information
Kudo committed Feb 4, 2023
1 parent 52584ec commit 42ad4b8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ def enableProguardInReleaseBuilds = false
* give correct results when using with locales other than en-US. Note that
* this variant is about 6MiB larger per architecture than default.
*/
def jscFlavor = 'org.webkit:android-jsc:+'
// def jscFlavor = 'org.webkit:android-jsc:+'
def jscVersion = ["node", "-e", "console.log(require('${rootDir}/../../package.json').version.split('.')[0]);"].execute([], projectDir).text.trim()
def jscFlavor = "org.webkit:android-jsc:r${jscVersion}"

/**
* Private function to get the list of Native Architectures you want to build.
Expand Down

0 comments on commit 42ad4b8

Please sign in to comment.