Skip to content

Commit

Permalink
fix(android): fix path error on Windows module builds
Browse files Browse the repository at this point in the history
  • Loading branch information
m1ga committed Jan 15, 2025
1 parent 73f7e25 commit 73f159a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/templates/module/generated/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ tasks.withType(JavaCompile).configureEach {
environment 'TI_MODULE_GENERATED_JS_DIR', "${projectDir}/build/ti-generated/js"
environment 'TI_MODULE_ID', '<%- moduleId %>'
environment 'TI_MODULE_NAMESPACE', '<%- moduleId.toLowerCase() %>'
environment 'TI_MODULE_TEMPLATE_DIR', '<%- tiSdkModuleTemplateDir.replace(/\\/g, ' \ \ \ \ ') %>'
environment 'TI_MODULE_TEMPLATE_DIR', '<%- tiSdkModuleTemplateDir.replace(/\\/g, '\\\\') %>'
executable = 'node'
workingDir = projectDir
args = ['generate-cpp-files.js']
Expand Down

0 comments on commit 73f159a

Please sign in to comment.