-
Notifications
You must be signed in to change notification settings - Fork 261
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
Compatibility with Android Studio Meerkat | 2024.3.1 Canary 7 (2024.3.1.7) #173
base: master
Are you sure you want to change the base?
Conversation
raghavsatyadev
commented
Dec 19, 2024
- Updated the IDE version to 2024.3.1.6. -> gradle.properties
- added JVM Args and Kotlin Code Style. -> gradle.properties
- Updated Gradle Wrapper to 8.12-rc-2. -> gradle-wrapper.properties
- Updated Java compatibility to version 21. -> build.gradle.kts
- Updated notification groups to use the NotificationGroupManager API. -> NotificationHelper.kt
- Removed deprecation in ReflectKt.kt
- Added Gradle Script file to run "buildPlugin runIde" commands directly without creating a configuration manually. -> BuildRun.run.xml
- Updated .gitignore to exclude .kotlin folder
- Updated the IDE version to 2024.3.1.6. -> gradle.properties - added JVM Args and Kotlin Code Style. -> gradle.properties - Updated Gradle Wrapper to 8.12-rc-2. -> gradle-wrapper.properties - Updated Java compatibility to version 21. -> build.gradle.kts - Updated notification groups to use the NotificationGroupManager API. -> NotificationHelper.kt - Removed deprecation in ReflectKt.kt - Added Gradle Script file to run "buildPlugin runIde" commands directly without creating a configuration manually. -> BuildRun.run.xml - Updated .gitignore to exclude .kotlin folder
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the pull request! Looks good to me in general but I have a few comments/questions that need to be addressed before merging it.
src/main/kotlin/com/developerphil/adbidea/ui/NotificationHelper.kt
Outdated
Show resolved
Hide resolved
- analyzed the project and fixed some suggestions from the studio analyzer -> DeviceResultFetcher.kt, UseSameDevicesHelper.kt, Debugger.kt, MyDeviceChooser.kt, ObjectGraph.kt - Updated run configurations to removed buildPlugin and make 2 separate configurations for runIde and runLocalIde - gradle-wrapper.properties downgraded to 8.11.1 - Removed listener from NotificationHelper.kt - Updated Application.kt to use @service instead of Android Components API, removed <application-components> from -> plugin.xml - Added temporary logo - Updated org.jetbrains.kotlin.jvm to 2.1.0 - Updated org.jetbrains.changelog to 2.2.1 - replaced sourceCompatibility with jvmToolchain - Updated sinceBuild to 243.22562.145 -> gradle.properties
@pbreault Added the changes that you requested. Plus:
I also wanted to update org.jetbrains.intellij.platform but couldn't because of some missing plugin error Missing Plugin |
- updated gradle wrapper to 8.12 - readying the code for org.jetbrains.intellij.platform : 2.2.1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR is going beyond it's original purpose of bringing compatibility with the 2024.3.1
. This is making it hard to review. Can you break this down in smaller more focused Pull Requests?
src/main/kotlin/com/developerphil/adbidea/adb/DeviceResultFetcher.kt
Outdated
Show resolved
Hide resolved
- removed plugin icon - removed commented code that was going to be used when upgrading org.jetbrains.intellij.platform to latest version
@pbreault changes done as requested |
@pbreault if you got time, can you please review this PR? |