File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
NodeJS-Frontend/src/main/cpp Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Java_com_github_warren_1bank_nodejs_1frontend_helpers_NodeJsAppRunner_saveStanda
52
52
jstring jFilepath) {
53
53
54
54
const char * filepath = env->GetStringUTFChars (jFilepath, 0 );
55
- int fd = open (filepath, O_CREAT|O_WRONLY|O_TRUNC);
55
+ int fd = open (filepath, O_CREAT|O_WRONLY|O_TRUNC, S_IRUSR|S_IWUSR );
56
56
dup2 (fd, 1 ); // stdout
57
57
dup2 (fd, 2 ); // stderr
58
58
close (fd);
Original file line number Diff line number Diff line change 1
1
project. ext {
2
- releaseVersionCode = Integer . parseInt(" 001000119 " , 10 ) // Integer.MAX_VALUE == 2147483647
3
- releaseVersion = ' 001.00.01 -19API'
2
+ releaseVersionCode = Integer . parseInt(" 001000219 " , 10 ) // Integer.MAX_VALUE == 2147483647
3
+ releaseVersion = ' 001.00.02 -19API'
4
4
javaVersion = JavaVersion . VERSION_1_8
5
5
minSdkVersion = 19
6
6
targetSdkVersion = 30
You can’t perform that action at this time.
0 commit comments