Skip to content

Commit

Permalink
Merge pull request #96 from Sharealikelicence/1876-app-name-fix
Browse files Browse the repository at this point in the history
[1876] fix: Adds app name character escaping
  • Loading branch information
freakboy3742 authored Nov 27, 2024
2 parents 9b4788a + 52afa93 commit 539a97e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
],
"_extensions": [
"briefcase.integrations.cookiecutter.PythonVersionExtension",
"briefcase.integrations.cookiecutter.XMLExtension"
"briefcase.integrations.cookiecutter.XMLExtension",
"briefcase.integrations.cookiecutter.GradleEscape"
]
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="formal_name">{{ cookiecutter.formal_name }}</string>
<string name="formal_name">"{{ cookiecutter.formal_name }}"</string>
<string name="app_name">{{ cookiecutter.app_name }}</string>
</resources>
2 changes: 1 addition & 1 deletion {{ cookiecutter.format }}/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
include ':app'
rootProject.name='{{ cookiecutter.safe_formal_name }}'
rootProject.name='{{ cookiecutter.safe_formal_name|escape_gradle }}'

0 comments on commit 539a97e

Please # to comment.