From f95c94a96296399e6f48af211c04dec7a8e73880 Mon Sep 17 00:00:00 2001 From: tobil4sk Date: Mon, 19 Jan 2026 20:52:33 +0000 Subject: [PATCH 1/2] Document gradle properties for android config --- _docs/project-files/xml-format/config.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/_docs/project-files/xml-format/config.md b/_docs/project-files/xml-format/config.md index 78dc3e8..fd5c8eb 100644 --- a/_docs/project-files/xml-format/config.md +++ b/_docs/project-files/xml-format/config.md @@ -94,6 +94,20 @@ Use the following syntax to set [``](https://developer.android.co ``` +A similar syntax is also available for setting [gradle properties](https://docs.gradle.org/current/userguide/build_environment.html#the_gradle_properties_file). + +```xml + + + + + + + hello "world" + + +``` + ### HTML5 The following options are available for [HTML5](../../../advanced-setup/html5/) only. From 1224fe1ead3c49be73c7dec45907defcd1eb1a60 Mon Sep 17 00:00:00 2001 From: player-03 Date: Mon, 19 Jan 2026 16:10:36 -0500 Subject: [PATCH 2/2] Add single quotes to example. In XML, both types of quote can be used in attributes without escaping, as long as the attribute itself uses the other quote type. This doesn't work when the string contains both quote types, which is when you'd consider using the verbose syntax. --- _docs/project-files/xml-format/config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_docs/project-files/xml-format/config.md b/_docs/project-files/xml-format/config.md index fd5c8eb..dd3038f 100644 --- a/_docs/project-files/xml-format/config.md +++ b/_docs/project-files/xml-format/config.md @@ -101,9 +101,9 @@ A similar syntax is also available for setting [gradle properties](https://docs. - + - hello "world" + 'hello' "world" ```