Skip to content

Commit

Permalink
发布 1.9.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaojinzi123 committed Apr 14, 2022
1 parent 0f91150 commit 11e2ba8
Show file tree
Hide file tree
Showing 14 changed files with 49 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -81,6 +81,10 @@ public String getName() {
public void transform(TransformInvocation transformInvocation) throws TransformException, InterruptedException, IOException {
super.transform(transformInvocation);

if (!transformInvocation.isIncremental()) {
transformInvocation.getOutputProvider().deleteAll();
}

filterAllNames(transformInvocation);

// 消费型输入,可以从中获取jar包和class文件夹路径。需要输出给下一个任务
Expand Down
Binary file not shown.
@@ -0,0 +1 @@
18095e2c7b4a216a92d8c76d7f0ce720
@@ -0,0 +1 @@
1f5ddbeb8401145b7acc5fa1cd2e659fb26366b9
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.xiaojinzi.component</groupId>
<artifactId>component-plugin</artifactId>
<version>1.9.2.1</version>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm-all</artifactId>
<version>5.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.android.tools.build</groupId>
<artifactId>gradle</artifactId>
<version>3.3.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>
@@ -0,0 +1 @@
87fda618a94f90be8e4606682ee24f87
@@ -0,0 +1 @@
d8063b4fbdb35e5632479a14de5cda9bdbbab86d
Expand Up @@ -3,7 +3,7 @@
<groupId>com.xiaojinzi.component</groupId>
<artifactId>component-plugin</artifactId>
<versioning>
<release>1.9.2</release>
<release>1.9.2.1</release>
<versions>
<version>1.7.7.3</version>
<version>1.7.8</version>
Expand Down Expand Up @@ -33,7 +33,8 @@
<version>1.9.1-beta1</version>
<version>1.9.1-beta2</version>
<version>1.9.2</version>
<version>1.9.2.1</version>
</versions>
<lastUpdated>20210723124036</lastUpdated>
<lastUpdated>20220414024154</lastUpdated>
</versioning>
</metadata>
@@ -1 +1 @@
d6fa990297fccba9d93e55e6dd3c118a
34adeac998d47a40eecb55af4a5db543
@@ -1 +1 @@
7c92ab39b53ee8a7a1721fb60e7cb2b35dfcedaa
89a91666b15cabe6cc5272f01643459f763649b9
3 changes: 3 additions & 0 deletions changelog.md
@@ -1,3 +1,6 @@
#### [v1.9.2.1](https://github.com/xiaojinzi123/Component/releases/tag/v1.9.2.1)
- 优化 Gradle Plugin 引起的 defined multiple times 的问题

#### [v1.9.2](https://github.com/xiaojinzi123/Component/releases/tag/v1.9.2)
- 统一 Kotlin 相关的版本
- 修复 v1.9.1-beta1 版本支持 scheme 改出来页面拦截器失效的问题
Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Expand Up @@ -10,8 +10,8 @@ ext.versions = [
constraintLayout : '2.0.4',
rxjava : '2.2.21',
rxandroid : "2.1.1",
component_version : "1.9.2",
component_plugin_upload_version : "1.9.2"
component_version : "1.9.2.1",
component_plugin_upload_version : "1.9.2.1"
]

ext.libs = [
Expand Down

0 comments on commit 11e2ba8

Please sign in to comment.