Skip to content

Commit fd3e81c

Browse files
committed
change debug runtime version
1 parent 6bbbff8 commit fd3e81c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

runtime/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ task setPackageVersion {
197197

198198
def versionFile = "$rootDir/src/main/jni//Version.h"
199199
String contents = new File(versionFile).getText("UTF-8")
200-
contents = contents.replaceAll( /RUNTIME_VERSION_PLACEHOLDER/, packageVersion)
200+
contents = contents.replaceAll( /0.0.0.0/, packageVersion)
201201
new File(versionFile).write(contents, "UTF-8")
202202
}
203203
}

runtime/src/main/jni/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define NATIVE_SCRIPT_RUNTIME_VERSION "RUNTIME_VERSION_PLACEHOLDER"
1+
#define NATIVE_SCRIPT_RUNTIME_VERSION "0.0.0.0"
22
#define NATIVE_SCRIPT_RUNTIME_COMMIT_SHA "RUNTIME_COMMIT_SHA_PLACEHOLDER"

0 commit comments

Comments
 (0)