1<!-- 2 Copyright (c) 2023 Huawei Device Co., Ltd. 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14--> 15<idea-plugin> 16 <id>com.action.update.check</id> 17 18 <name>UpdateCheck</name> 19 20 <vendor email="free618@126.com" url="https://gitee.com/hrfgostop">Vendor Name</vendor> 21 22 <description><![CDATA[ 23 SDK upgrade aids. Help developers solve problems caused by upgrading the SDK</br>After installing this plugin, you can receive prompt information that needs to be modified during use, 24 </br>which helps you locate the modification location and greatly facilitates developers. 25 ]]></description> 26 27 <depends>com.intellij.modules.platform</depends> 28 29 <extensions defaultExtensionNs="com.intellij"> 30 <notificationGroup displayType="BALLOON" id="com.update.check"/> 31 <projectService serviceImplementation="com.update.check.action.UpdateCheckService" order="last" /> 32 33 <toolWindow factoryClass="com.update.check.action.view.ReporterToolWindowFactory" id="UpdateReport" 34 anchor="bottom" icon="AllIcons.Actions.Annotate" /> 35 </extensions> 36 <actions> 37 <group id="com.huawei.updateCheck" text="UpdateCheck" 38 description="Project updateCheck" popup="true"> 39 <add-to-group group-id="MainMenu" anchor="before" relative-to-action="HelpMenu"/> 40 </group> 41 <action id="com.update.check.action.ToCheck" class="com.update.check.action.ToCheck" text="Start" description="To updateCheck"> 42 <add-to-group group-id="com.huawei.updateCheck"/> 43 </action> 44 </actions> 45</idea-plugin>