File tree Expand file tree Collapse file tree
plugin/src/main/kotlin/com/github/grishberg/profiler/androidstudio Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ studioCompilePath=/Applications/Android Studio.app/Contents
88
99pluginGroup = com.github.grishberg
1010pluginName = android-methods-profiler
11- yampVersion = 24.10.19
11+ yampVersion = 25.01.09
1212
1313# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1414# for insight into build numbers and IntelliJ Platform versions.
15- pluginSinceBuild = 231
16- pluginUntilBuild = 241 .*
15+ pluginSinceBuild = 223
16+ pluginUntilBuild = 242 .*
1717
1818# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1919platformType = AI
Original file line number Diff line number Diff line change @@ -22,7 +22,12 @@ class PluginProjectInfo(
2222 override val activityName: String?
2323
2424 init {
25- val facets = getAndroidFacets(project)
25+ val facets = try {
26+ getAndroidFacets(project)
27+ } catch (e: Exception ) {
28+ logger.e(" getAndroidFacets error" , e)
29+ emptyList()
30+ }
2631 packageName = createPackageName(facets)
2732 val devices = AndroidSdkUtils .getDebugBridge(project)?.devices ? : emptyArray()
2833 activityName = try {
You can’t perform that action at this time.
0 commit comments