Skip to content

Commit 3acc3c4

Browse files
authored
Build for AS 2023.1 (#6748)
1 parent c561569 commit 3acc3c4

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 73.1
2+
- Build for Android Studio Hedgehog
3+
14
# 73
25
- Prevent NPE when process is stopped while record fields are displayed
36
- Check lcov files for files with no test coverage (#6692)

gradle.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name = "flutter-intellij"
22
org.gradle.parallel=true
33
org.gradle.jvmargs=-Xms1024m -Xmx4048m
44
javaVersion=17
5-
dartVersion=231.8770.15
6-
flutterPluginVersion=73
7-
ide=ideaIC
8-
testing=false
9-
buildSpec=setup
10-
baseVersion=231.8770.17
5+
dartVersion=231.7864.77
6+
flutterPluginVersion=1
7+
ide=android-studio
8+
testing=true
9+
buildSpec=2023.1
10+
baseVersion=231.7864.76
1111
smaliPlugin=com.android.tools.idea.smali
1212
langPlugin=org.intellij.intelliLang
1313
kotlin.stdlib.default.dependency=false
14-
ideVersion=LATEST-EAP-SNAPSHOT
14+
ideVersion=2023.1.1.3

product-matrix.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656
"name": "2023.1",
5757
"version": "2023.1",
5858
"isUnitTestTarget": "true",
59-
"ideaProduct": "ideaIC",
60-
"ideaVersion": "231.8770.17",
61-
"baseVersion": "231.8770.17",
62-
"dartPluginVersion": "231.8770.15",
63-
"sinceBuild": "231.7665.28",
59+
"ideaProduct": "android-studio",
60+
"ideaVersion": "2023.1.1.3",
61+
"baseVersion": "231.7864.76",
62+
"dartPluginVersion": "231.7864.77",
63+
"sinceBuild": "231.7864.76",
6464
"untilBuild": "231.*"
6565
}
6666
]

resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<category>Custom Languages</category>
2323
<version>SNAPSHOT</version>
24-
<idea-version since-build="231.7665.28" until-build="231.*"/>
24+
<idea-version since-build="231.7864.76" until-build="231.*"/>
2525

2626
<depends>com.intellij.modules.platform</depends>
2727
<depends>com.intellij.modules.lang</depends>

tool/plugin/lib/edit.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ List<EditCommand> editCommands = [
3838
path: 'build.gradle.kts',
3939
initials: ['version.set(ideVersion)'],
4040
replacements: ['version.set("LATEST-EAP-SNAPSHOT")'],
41-
versions: ['2023.1'],
41+
versions: ['2023.2'],
4242
),
4343
EditCommand(
4444
path: 'flutter-idea/build.gradle.kts',
4545
initials: ['version.set(ideVersion)'],
4646
replacements: ['version.set("LATEST-EAP-SNAPSHOT")'],
47-
versions: ['2023.1'],
47+
versions: ['2023.2'],
4848
),
4949
EditCommand(
5050
path:

tool/plugin/test/plugin_test.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void main() {
4545
'android-studio',
4646
'android-studio',
4747
'android-studio',
48-
'ideaIC',
48+
'android-studio',
4949
]));
5050
});
5151
});
@@ -62,7 +62,7 @@ void main() {
6262
'android-studio',
6363
'android-studio',
6464
'android-studio',
65-
'ideaIC',
65+
'android-studio',
6666
]));
6767
});
6868
});
@@ -79,7 +79,7 @@ void main() {
7979
'android-studio',
8080
'android-studio',
8181
'android-studio',
82-
'ideaIC',
82+
'android-studio',
8383
]));
8484
});
8585
});

0 commit comments

Comments
 (0)