From 8823310c97fb516b31e2bf3448c490d69aedadf5 Mon Sep 17 00:00:00 2001 From: Phil Quitslund Date: Thu, 3 Apr 2025 09:47:10 -0700 Subject: [PATCH] [docs] fix `gradle.properties` example --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 865ff9efed..58789746ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -116,7 +116,7 @@ name and contact info to the [AUTHORS](AUTHORS) file. - In the root directory, create an empty `gradle.properties` file (`touch gradle.properties`) - Add the following to the file: ``` - name = "flutter-intellij + name = "flutter-intellij" buildSpec=2024.3 flutterPluginVersion=1 ideaProduct=android-studio @@ -129,7 +129,7 @@ name and contact info to the [AUTHORS](AUTHORS) file. testing=true kotlin.stdlib.default.dependency=false org.gradle.parallel=true - org.gradle.jvmargs=-Xms1024m -Xmx4048m` + org.gradle.jvmargs=-Xms1024m -Xmx4048m ``` - **[Note]** If you want, you can manually change these properties to target different versions of IntelliJ. See `product-matrix.json` to find which configurations are supported.