From e60a606de52e99b1c504c44309809ec720701a51 Mon Sep 17 00:00:00 2001 From: xuexiangjys Date: Sun, 7 Apr 2019 16:48:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E5=B8=831.0.3=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 +++++++------- docs/README.md | 8 +++++--- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 04fb5c6..b5b5da2 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ buildscript { ··· dependencies { ··· - classpath 'com.github.xuexiangjys.XAOP:xaop-plugin:1.0.2' + classpath 'com.github.xuexiangjys.XAOP:xaop-plugin:1.0.3' } } ``` @@ -70,9 +70,9 @@ apply plugin: 'com.xuexiang.xaop' //引用xaop插件 dependencies { ··· //添加依赖 - implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:1.0.2' + implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:1.0.3' //如果你升级到androidx,请使用下面依赖 - implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:x1.0.2' + implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:x1.0.3' } ``` @@ -134,7 +134,7 @@ buildscript { ··· dependencies { ··· - classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.0' + classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.4' } } ``` @@ -232,7 +232,7 @@ private String hello(String name, String cardId) { ### 3.6、内存缓存切片使用 -1.使用`@MemoryCache`标注需要内存缓存的方法。可设置缓存的key,不设置的话默认key为`方法名+参数1+参数2+...`。 +1.使用`@MemoryCache`标注需要内存缓存的方法。可设置缓存的key,不设置的话默认key为`方法名(参数1名=参数1值|参数2名=参数2值|...)`,当然你也可以修改key的自动生成规则,你只需要调用`XAOP.setICacheKeyCreator`即可。 2.标注的方法一定要有返回值,否则内存缓存切片将不起作用。 @@ -250,7 +250,7 @@ private String hello(String name, String cardId) { ### 3.7、磁盘缓存切片使用 -1.使用`@DiskCache`标注需要磁盘缓存的方法。可设置缓存的key,不设置的话默认key为`方法名+参数1+参数2+...`。 +1.使用`@DiskCache`标注需要磁盘缓存的方法。可设置缓存的key,不设置的话默认key为`方法名(参数1名=参数1值|参数2名=参数2值|...)`,当然你也可以修改key的自动生成规则,你只需要调用`XAOP.setICacheKeyCreator`即可。 2.可设置磁盘缓存的有效期,单位:s。不设置的话默认永久有效。 @@ -330,7 +330,7 @@ private String hello(String name, String cardId) { ![](https://github.com/xuexiangjys/XPage/blob/master/img/qq_group.jpg) -[xaopsvg]: https://img.shields.io/badge/XAOP-v1.0.2-brightgreen.svg +[xaopsvg]: https://img.shields.io/badge/XAOP-v1.0.3-brightgreen.svg [xaop]: https://github.com/xuexiangjys/XAOP [apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg [api]: https://android-arsenal.com/api?level=14 diff --git a/docs/README.md b/docs/README.md index c61d65d..9dbfc43 100644 --- a/docs/README.md +++ b/docs/README.md @@ -46,7 +46,7 @@ buildscript { ··· dependencies { ··· - classpath 'com.github.xuexiangjys.XAOP:xaop-plugin:1.0.2' + classpath 'com.github.xuexiangjys.XAOP:xaop-plugin:1.0.3' } } ``` @@ -58,7 +58,9 @@ apply plugin: 'com.xuexiang.xaop' //引用xaop插件 dependencies { ··· - implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:1.0.2' //添加依赖 + implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:1.0.3' //添加依赖 + //如果你升级到androidx,请使用下面依赖 + implementation 'com.github.xuexiangjys.XAOP:xaop-runtime:x1.0.3' } ``` @@ -103,7 +105,7 @@ XAOP.setInterceptor(new Interceptor() { [![](https://img.shields.io/badge/点击一键加入QQ群-602082750-blue.svg)](http://shang.qq.com/wpa/qunwpa?idkey=9922861ef85c19f1575aecea0e8680f60d9386080a97ed310c971ae074998887) -[xaopsvg]: https://img.shields.io/badge/XAOP-v1.0.2-brightgreen.svg +[xaopsvg]: https://img.shields.io/badge/XAOP-v1.0.3-brightgreen.svg [xaop]: https://github.com/xuexiangjys/XAOP [apisvg]: https://img.shields.io/badge/API-14+-brightgreen.svg [api]: https://android-arsenal.com/api?level=14