Skip to content

Commit 1cb2bb0

Browse files
committedNov 22, 2018
升级ArbitraryGen版本到2.1.6,修复java语法解析器解析else if异常的问题
1 parent a30e874 commit 1cb2bb0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# ModuleApi
22

33
[![license](http://img.shields.io/badge/license-Apache2.0-brightgreen.svg?style=flat)](https://github.com/AlbieLiang/ModuleApi/blob/master/LICENSE)
4-
[![Release Version](https://img.shields.io/badge/release-0.1.5-red.svg)](https://github.com/AlbieLiang/ModuelApi/releases)
5-
[![wiki](https://img.shields.io/badge/wiki-0.1.5-red.svg)](https://github.com/AlbieLiang/ModuleApi/wiki)
4+
[![Release Version](https://img.shields.io/badge/release-0.1.6-red.svg)](https://github.com/AlbieLiang/ModuelApi/releases)
5+
[![wiki](https://img.shields.io/badge/wiki-0.1.6-red.svg)](https://github.com/AlbieLiang/ModuleApi/wiki)
66
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/AlbieLiang/ModuleApi/pulls)
77

88
A across module Calling component for Android development.
@@ -21,7 +21,7 @@ buildscript {
2121
}
2222
dependencies {
2323
// 添加对ModuleApi代码生成插件的依赖
24-
classpath 'cc.suitalk.tools:module-api-ag-extension:0.1.5'
24+
classpath 'cc.suitalk.tools:module-api-ag-extension:<last-version>'
2525
}
2626
}
2727
```
@@ -32,7 +32,7 @@ buildscript {
3232
apply plugin: 'module-api'
3333
3434
dependencies {
35-
compile 'cc.suitalk.android:module-api:0.1.5'
35+
compile 'cc.suitalk.android:module-api:<last-version>'
3636
}
3737
3838
moduleApi {

‎config.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ ext {
2828
]
2929

3030
bintrayConfig = [
31-
version : '0.1.5',
31+
version : '0.1.6',
3232
siteUrl : 'https://github.com/AlbieLiang/ModuleApi', // 项目的主页
3333
gitUrl : 'https://github.com/AlbieLiang/ModuleApi.git', // Git仓库的url
3434
licenseName : 'The Apache Software License, Version 2.0',
@@ -39,8 +39,8 @@ ext {
3939
]
4040

4141
libsDependencies = [
42-
arbitrarygen : 'cc.suitalk.tools:arbitrarygen:2.1.5',
43-
arbitrarygenSdk : 'cc.suitalk.tools:arbitrarygen-sdk:2.1.5',
44-
agGradlePlugin : 'cc.suitalk.tools:arbitrarygen-plugin:2.1.5',
42+
arbitrarygen : 'cc.suitalk.tools:arbitrarygen:2.1.6',
43+
arbitrarygenSdk : 'cc.suitalk.tools:arbitrarygen-sdk:2.1.6',
44+
agGradlePlugin : 'cc.suitalk.tools:arbitrarygen-plugin:2.1.6',
4545
]
4646
}

0 commit comments

Comments
 (0)
Please sign in to comment.