-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from wyjsonGo/develop
publish v2.0.0 1.按需分组加载路由 2.模块Application生命周期功能 3.修改项目整体包结构 4.全新的生成路由文档方式(参见5-9) 5.升级Gradle8.1.2 6.注解处理器添加增量编译支持 7.优化可能会出现空指针的情况 8.开放CardMeta类setPath()方法, Card类setUri()方法访问范围 9.添加MIT LICENSE
- Loading branch information
Showing
93 changed files
with
3,130 additions
and
1,331 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
GoRouter-Annotation/src/main/java/com/wyjson/router/annotation/ApplicationModule.java
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,13 @@ | ||
package com.wyjson.router.annotation; | ||
|
||
import static java.lang.annotation.ElementType.TYPE; | ||
import static java.lang.annotation.RetentionPolicy.SOURCE; | ||
|
||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.Target; | ||
|
||
@Target({TYPE}) | ||
@Retention(SOURCE) | ||
public @interface ApplicationModule { | ||
|
||
} |
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
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
Oops, something went wrong.