Skip to content

Commit

Permalink
update gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mcxiaoke committed Dec 26, 2017
1 parent 72f946a commit ff64742
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
11 changes: 1 addition & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
- [StickyEvent](#stickyevent)
- [@BusEvent](#busevent)
- [实现教程](#实现教程)
- [项目状态](#项目状态)
- [关于作者](#关于作者)
- [联系方式](#联系方式)
- [开源项目](#开源项目)
Expand All @@ -27,7 +26,7 @@

基于发布订阅(Pub/Sub)模式的一个事件消息库,使用通用的 `register(target)`, `unregister(target)`, `post(event)` 消息通信接口,能有效的减少甚至消除Android应用中异步任务逻辑和界面更新之间的耦合,实现模块化,提高开发效率。

[![Maven Central](http://img.shields.io/badge/2015.08.18-com.mcxiaoke.next:1.0.2-brightgreen.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mcxiaoke.xbus%22)
[![Maven Central](https://img.shields.io/badge/2015.08.18-com.mcxiaoke.xbus:bus:1.0.2-brightgreen.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.mcxiaoke.xbus%22)

* 2015.09.15 **1.0.2** - 修复多线程发送事件的同步问题
* 2015.08.18 **1.0.1** - 修复 `unresiger()` 的空指针问题
Expand Down Expand Up @@ -250,14 +249,6 @@ public <E> void postSticky(E event)
* [`跟我一起写EventBus(四)`](docs/how-to-write-an-eventbus-part4.md)
* [`xBus使用教程`](docs/xbus-user-guide.md)

## 项目状态

* 2015.08.03 **0.1.0** 草稿版,实现了一个最简单的可用的原型
* 2015.08.03 **0.2.0** 支持在基类中注册和添加事件接收器方法
* 2015.08.04 **0.6.0** 半成品,支持注册对象和事件类型的继承
* 2015.08.05 **0.7.0** 改进架构,增加扩展支持和错误处理
* 2015.08.06 **0.8.0** 完善了异常处理和简单的测试示例

------

## 关于作者
Expand Down
4 changes: 3 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:1.3.1'
classpath 'com.android.tools.build:gradle:2.3.3'
}
}

Expand All @@ -16,6 +17,7 @@ allprojects {


repositories {
jcenter()
mavenCentral()
}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ POM_DEVELOPER_NAME=Xiaoke Zhang
POM_DEVELOPER_EMAIL=mail@mcxiaoke.com

ANDROID_BUILD_TARGET_SDK_VERSION=22
ANDROID_BUILD_TOOLS_VERSION=22.0.1
ANDROID_BUILD_SDK_VERSION=22
ANDROID_BUILD_TOOLS_VERSION=25.0.3
ANDROID_BUILD_SDK_VERSION=25

ANDROID_BUILD_MIN_SDK_VERSION=10
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip

0 comments on commit ff64742

Please sign in to comment.