You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -121,21 +121,16 @@ name and contact info to the [AUTHORS](AUTHORS) file.
121
121
- In the root directory, create an empty `gradle.properties` file (`touch gradle.properties`)
122
122
- Add the following to the file:
123
123
```
124
-
name = "flutter-intellij"
125
-
buildSpec=2024.3
126
-
flutterPluginVersion=1
127
-
ideaProduct=android-studio
128
-
ideaVersion=2024.3.1.7
129
-
baseVersion=243.22562.59
130
-
dartPluginVersion= 243.21565.120
131
-
androidPluginVersion=
132
-
sinceBuild=243
133
-
untilBuild=253.*
134
-
testing=true
135
-
kotlin.stdlib.default.dependency=false
136
-
org.gradle.parallel=true
137
-
org.gradle.jvmargs=-Xms1024m -Xmx4048m
138
-
```
124
+
flutterPluginVersion=SNAPSHOT
125
+
ideaVersion=2024.3.1.7
126
+
dartPluginVersion= 243.21565.120
127
+
sinceBuild=243
128
+
untilBuild=253.*
129
+
javaVersion=21
130
+
kotlin.stdlib.default.dependency=false
131
+
org.gradle.parallel=true
132
+
org.gradle.jvmargs=-Xms1024m -Xmx4048m
133
+
```
139
134
- **[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.
140
135
141
136
3. Start IntelliJ IDEA with the `flutter-intellij` project.
@@ -255,30 +250,6 @@ name and contact info to the [AUTHORS](AUTHORS) file.
255
250
- Expand `Edit configuration templates...` and verify that Flutter is present.
256
251
- Click [+] and verify that Flutter is present.
257
252
258
-
### Handle symlinks
259
-
260
-
If exceptions like these occurred:
261
-
262
-
```
263
-
A problem occurred configuring project ':flutter-idea'.
264
-
> Source directory 'X:\path\to\your\flutter-intellij\flutter-idea\resources' is not a directory.
265
-
```
266
-
267
-
Check if the directory is a symlink by opening the link in IDEA, and it'll display as:
268
-
269
-
```symlink
270
-
../resources
271
-
```
272
-
273
-
Delete the file, then re-clone the repo using the below command:
0 commit comments