Skip to content

Commit

Permalink
update ID separate
Browse files Browse the repository at this point in the history
  • Loading branch information
KunMinX committed Aug 30, 2022
1 parent c156c7b commit 34c3435
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ allprojects {
模块 build.gradle 添加如下依赖:

```groovy
implementation 'com.github.KunMinX:Java8-Sealed-Class:1.2.0-beta'
implementation 'com.github.KunMinX:Java8-Sealed-Class:1.3.0-beta'
```

 
Expand Down Expand Up @@ -64,7 +64,7 @@ switch (event.id) {

1.当参数列表为空,例如 void test(),属于无参消息发送场景,故不对其提供 copy 方法。

2.@Param 参数是专为 MVI-Dispatcher 模型设计,日常使用直接忽视即可
2.@Param 参数是专为 [MVI-Dispatcher](https://github.com/KunMinX/MVI-Dispatcher) 模型设计,日常使用无视即可

 

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext {
appTargetSdk = 32
appMinSdk = 23
appVersionCode = 102000
appVersionName = "1.2.0-beta"
appVersionCode = 103000
appVersionName = "1.3.0-beta"
}
repositories {
gradlePluginPortal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public boolean process(Set<? extends TypeElement> types, RoundEnvironment rEnv)
.addModifiers(Modifier.PUBLIC)
.addModifiers(Modifier.FINAL)
.addModifiers(Modifier.STATIC)
.initializer("$S", ClassName.get(typeElement.getEnclosingElement().toString(), className) + "." + innerClassName)
.initializer("$S", ClassName.get(typeElement.getEnclosingElement().toString(), className) + "$" + innerClassName)
.build();
innerClassBuilder.addField(fbID);

Expand Down

0 comments on commit 34c3435

Please sign in to comment.