diff --git a/README.md b/README.md index 14c611a..2337823 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ repositories { ``` dependencies { - compile 'com.github.tianzhijiexian:CommonAdapter:1.1.5' + compile 'com.github.tianzhijiexian:CommonAdapter:1.1.6' } ``` @@ -109,7 +109,7 @@ public class TextItem implements AdapterItem { ### 一、ListView+GridView的通用适配器——CommonAdapter -只需继承CommonAdapter便可实现适配器: +只需继承`CommonAdapter`便可实现适配器: ```java listView.setAdapter(new CommonAdapter(data) { public AdapterItem createItem(Object type) { diff --git a/adapter/build.gradle b/adapter/build.gradle index c6a5a1b..c789ef3 100644 --- a/adapter/build.gradle +++ b/adapter/build.gradle @@ -8,7 +8,7 @@ android { minSdkVersion 8 targetSdkVersion 23 versionCode 7 - versionName "1.1.5" + versionName "1.1.6" } }