We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47416c5 commit a3fbd1bCopy full SHA for a3fbd1b
.github/workflows/test.yml
@@ -98,17 +98,17 @@ jobs:
98
working-directory: myApp
99
run: |
100
cat <<EOT > _fix_ndk_version.js
101
- const fs = require("fs");
102
- const path = require("path");
+ const fs = require('fs');
+ const path = require('path');
103
104
const appGradlePath = path.resolve(
105
__dirname,
106
- "App_Resources/Android/app.gradle"
+ 'App_Resources/Android/app.gradle'
107
);
108
let contents = fs.readFileSync(appGradlePath);
109
contents = contents.toString().replace(
110
- "defaultConfig {",
111
- `ndkVersion "22.1.7171670"\n defaultConfig {`
+ 'defaultConfig {',
+ 'ndkVersion "22.1.7171670"\n defaultConfig {'
112
113
fs.writeFileSync(appGradlePath, contents);
114
EOT
0 commit comments