Skip to content

Build for AS 2023.1 #6748

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 73.1
- Build for Android Studio Hedgehog

# 73
- Prevent NPE when process is stopped while record fields are displayed
- Check lcov files for files with no test coverage (#6692)
Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name = "flutter-intellij"
org.gradle.parallel=true
org.gradle.jvmargs=-Xms1024m -Xmx4048m
javaVersion=17
dartVersion=231.8770.15
flutterPluginVersion=73
ide=ideaIC
testing=false
buildSpec=setup
baseVersion=231.8770.17
dartVersion=231.7864.77
flutterPluginVersion=1
ide=android-studio
testing=true
buildSpec=2023.1
baseVersion=231.7864.76
smaliPlugin=com.android.tools.idea.smali
langPlugin=org.intellij.intelliLang
kotlin.stdlib.default.dependency=false
ideVersion=LATEST-EAP-SNAPSHOT
ideVersion=2023.1.1.3
10 changes: 5 additions & 5 deletions product-matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
"name": "2023.1",
"version": "2023.1",
"isUnitTestTarget": "true",
"ideaProduct": "ideaIC",
"ideaVersion": "231.8770.17",
"baseVersion": "231.8770.17",
"dartPluginVersion": "231.8770.15",
"sinceBuild": "231.7665.28",
"ideaProduct": "android-studio",
"ideaVersion": "2023.1.1.3",
"baseVersion": "231.7864.76",
"dartPluginVersion": "231.7864.77",
"sinceBuild": "231.7864.76",
"untilBuild": "231.*"
}
]
Expand Down
2 changes: 1 addition & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

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

<depends>com.intellij.modules.platform</depends>
<depends>com.intellij.modules.lang</depends>
Expand Down
4 changes: 2 additions & 2 deletions tool/plugin/lib/edit.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ List<EditCommand> editCommands = [
path: 'build.gradle.kts',
initials: ['version.set(ideVersion)'],
replacements: ['version.set("LATEST-EAP-SNAPSHOT")'],
versions: ['2023.1'],
versions: ['2023.2'],
),
EditCommand(
path: 'flutter-idea/build.gradle.kts',
initials: ['version.set(ideVersion)'],
replacements: ['version.set("LATEST-EAP-SNAPSHOT")'],
versions: ['2023.1'],
versions: ['2023.2'],
),
EditCommand(
path:
Expand Down
6 changes: 3 additions & 3 deletions tool/plugin/test/plugin_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void main() {
'android-studio',
'android-studio',
'android-studio',
'ideaIC',
'android-studio',
]));
});
});
Expand All @@ -62,7 +62,7 @@ void main() {
'android-studio',
'android-studio',
'android-studio',
'ideaIC',
'android-studio',
]));
});
});
Expand All @@ -79,7 +79,7 @@ void main() {
'android-studio',
'android-studio',
'android-studio',
'ideaIC',
'android-studio',
]));
});
});
Expand Down