forked from alibaba/ARouter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update no path notification content.
- Loading branch information
Showing
2 changed files
with
42 additions
and
10 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
arouter-idea-plugin/src/main/kotlin/com/alibaba/android/arouter/idea/extensions/Const.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.alibaba.android.arouter.idea.extensions | ||
|
||
import com.intellij.openapi.util.IconLoader | ||
|
||
/** | ||
* Const of plugin | ||
* | ||
* @author zhilong <a href="mailto:[email protected]">Contact me.</a> | ||
* @version 1.0 | ||
* @since 2018/12/13 8:06 PM | ||
*/ | ||
object Const { | ||
const val ROUTE_ANNOTATION_NAME = "com.alibaba.android.arouter.facade.annotation.Route" | ||
const val SDK_NAME = "ARouter" | ||
|
||
// Notify | ||
const val NOTIFY_SERVICE_NAME = "ARouter Plugin Tips" | ||
const val NOTIFY_TITLE = "Road Sign" | ||
const val NOTIFY_NO_TARGET_TIPS = "No destination found or unsupported type." | ||
|
||
val navigationOnIcon = IconLoader.getIcon("icon/outline-location_on-24px.svg") | ||
val navigationOffIcon = IconLoader.getIcon("icon/outline-location_off-24px.svg") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters