Skip to content

Commit

Permalink
更新版本和README
Browse files Browse the repository at this point in the history
  • Loading branch information
dreamgyf committed Nov 2, 2022
1 parent 7641391 commit 75080fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion FastInflate/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if (file.exists()) {
library {
groupId = 'com.dreamgyf.android.plugin'
moduleName = 'FastInflate'
version = '0.1.0-alpha-02'
version = '0.1.0-alpha-03'
description = '编译期解析布局xml文件,提高布局加载的性能'
url = 'https://github.com/dreamgyf/FastInflate'
}
Expand Down
2 changes: 1 addition & 1 deletion FastInflatePlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (file.exists()) {
id = 'com.dreamgyf.android.fastinflate'
name = 'fastInflate'
displayName = 'Android FastInflate'
version = '0.1.0-alpha-02'
version = '0.1.0-alpha-03'
implementationClass = 'com.dreamgyf.android.plugin.fastinflate.plugin.FastInflatePlugin'
description = 'Parse the layout xml file at compile time, and convert the reflection instantiation in LayoutInflater into normal instantiation, so as to improve the performance of layout loading.\n' +
'编译期时解析布局xml文件,将LayoutInflater中的反射实例化转成普通的实例化,以此来提高布局加载的性能'
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

**当前版本为alpha测试版,仅供学习研究使用,由此插件引发的各种损失,本人概不负责!!!**

**目前不支持多`module`、多`flavor`项目`<include />`标签不支持使用`theme`属性**
**目前暂不支持多`module`项目,不支持多`layout`目录(比如`layout-v23``<include />`标签不支持使用`theme`属性**


**注:编译此项目请直接 clone 父工程 [AndroidLibraries](https://github.com/dreamgyf/AndroidLibraries)**
Expand All @@ -17,11 +17,11 @@

```groovy
plugins {
id 'com.dreamgyf.android.fastinflate' version '0.1.0-alpha-02'
id 'com.dreamgyf.android.fastinflate' version '0.1.0-alpha-03'
}
dependencies {
implementation 'com.dreamgyf.android.fastinflate:0.1.0-alpha-02'
implementation 'com.dreamgyf.android.fastinflate:0.1.0-alpha-03'
}
```

Expand Down

0 comments on commit 75080fd

Please sign in to comment.