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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+28-4Lines changed: 28 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,42 @@
2
2
3
3
### Added
4
4
5
+
- Added missing platforms and targets to Build menu.
6
+
5
7
### Changed
6
8
7
-
- Updated gradle plugin version to re-enable running `./gradlew verifyPlugin` locally. (#8847)
8
-
- Added missing platforms and targets to Build menu.
9
+
### Removed
10
+
11
+
### Fixed
12
+
13
+
## 92.0.0
14
+
15
+
### Added
16
+
17
+
- Option to specify the pub root module for Flutter Widget Previewer. (#8888)
18
+
19
+
### Changed
9
20
10
21
### Removed
11
22
23
+
### Fixed
24
+
- Silent failure when opening Flutter projects without `.idea` directory in IntelliJ IDEA, by removing `FlutterProjectOpenProcessor` and
25
+
migrating configuration logic to `FlutterInitializer`. (#8903)
26
+
- IDE focus loss when running in full screen mode. (#8906)
27
+
- Excessive toolbar updates causing exceptions in Android Studio, by making device selector updates targeted instead of global. (#8891)
28
+
29
+
## 91.0.0
30
+
31
+
### Changed
32
+
33
+
- Gradle plugin version to re-enable running `./gradlew verifyPlugin` locally. (#8847)
34
+
12
35
### Fixed
13
36
14
-
- Silent failure when opening Flutter projects without `.idea` directory in IntelliJ IDEA, by removing `FlutterProjectOpenProcessor` and migrating configuration logic to `FlutterInitializer`. (#8845)
15
-
- Gutter buttons not running tests with non-ASCII characters in their names. (#7985)
37
+
- Gutter buttons not running tests with non-ASCII characters in their names. (#8838)
16
38
- Freeze from JX Browser close. (#8864)
39
+
- Crash in split debugger mode in IntelliJ 2025.3+. (#8878)
40
+
- Passing additional arguments from the Flutter test template. (#8836)
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,6 @@ name and contact info to the [AUTHORS](AUTHORS) file.
58
58
## Environment set-up
59
59
60
60
1. Install the latest [Java Development Kit](https://www.java.com/en/download/).
61
-
- The current Java Development Kit version is: **23**.
62
61
-**[Googlers only]** Install Java from go/softwarecenter instead.
63
62
64
63
2. Set your `JAVA_HOME` directory in the configuration file for your shell environment.
@@ -233,6 +232,23 @@ name and contact info to the [AUTHORS](AUTHORS) file.
233
232
- Expand `Edit configuration templates...` and verify that Flutter is present.
234
233
- Click [+] and verify that Flutter is present.
235
234
235
+
### Running against custom target IDEs
236
+
237
+
To test or debug the plugin against a different IDE target (like IntelliJ IDEA Community or Ultimate) without changing the project's compilation target, you can use the custom `runTarget` Gradle task.
238
+
239
+
Run it from the command line specifying the target IDE and version:
240
+
```bash
241
+
./gradlew runTarget -Pide=IntelliJ -PideV=2025.1
242
+
```
243
+
244
+
* **`-Pide`**: Valid values are `AndroidStudio` (default), `IntelliJ` (Community), and `Ultimate`.
245
+
* **`-PideV`**: Any valid version string or build number for the selected IDE.
246
+
247
+
To see a full list of available options and usage examples, run the task without any parameters:
248
+
```bash
249
+
./gradlew runTarget
250
+
```
251
+
236
252
## Provision Tool
237
253
238
254
This is not currently required. However, for debugging unit tests, it may be handy; please ignore for now.
0 commit comments