Skip to content

Commit f6105d6

Browse files
更新api
1 parent d379f54 commit f6105d6

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#
2+
[![Travis branch](https://img.shields.io/badge/Github-Abraham-ff69b4.svg)](https://github.com/AbrahamCaiJin)
23
[![Travis](https://img.shields.io/badge/简书-Abraham-blue.svg)](http://www.jianshu.com/u/8a0908d85e0a)
34
[![CircleCI](https://img.shields.io/badge/Blog-Abraham-brightgreen.svg)](http://blog.csdn.net/u014727709?viewmode=contents)
45
[![TeamCity (simple build status)](https://img.shields.io/badge/Weibo-Abraham%20-lightgrey.svg)](http://weibo.com/p/1005053895373916/home?from=page_100505&mod=TAB&is_all=1#place)
@@ -612,8 +613,42 @@
612613
decrypt : 3DES 解密
613614
## About
614615
   这里把开发中常用的一些工具类做一个整理,主要用到的时候不用再费力的百度或者Google了,大家有需要的可以随时借鉴走,同时也希望这个越来越强大,有什么错误的地方还希望各位不吝指出,让我得以完善,当然,在此声明,这些并不是我一个人,也用了许多前辈们的东西,这里一并感谢,目前还在测试,还没有上传到Jcenter,需要的自己拷贝,测试完成后会给大家贴出引用地址的,持续更新中。对你有用就给一个Start吧!</br></br>
616+
[![Travis branch](https://img.shields.io/badge/Github-Abraham-ff69b4.svg)](https://github.com/AbrahamCaiJin)
615617
[![Travis](https://img.shields.io/badge/简书-Abraham-blue.svg)](http://www.jianshu.com/u/8a0908d85e0a)
616618
[![CircleCI](https://img.shields.io/badge/Blog-Abraham-brightgreen.svg)](http://blog.csdn.net/u014727709?viewmode=contents)
617619
[![TeamCity (simple build status)](https://img.shields.io/badge/Weibo-Abraham%20-lightgrey.svg)](http://weibo.com/p/1005053895373916/home?from=page_100505&mod=TAB&is_all=1#place)
618620
[![Travis](https://img.shields.io/badge/QQ群-523167548%20-ff69b4.svg)](https://shang.qq.com/wpa/qunwpa?idkey=4898a63b0283bc98cc61daeeb9eb6648a34886cf554a3ec272063ef5d999b012)
621+
## Download
619622

623+
Gradle:
624+
``` groovy
625+
compile 'com.abrahamcaijin.commonutil:CommonUtil:1.0.0'
626+
```
627+
Maven:
628+
``` groovy
629+
<dependency>
630+
<groupId>com.abrahamcaijin.commonutil</groupId>
631+
<artifactId>CommonUtil</artifactId>
632+
<version>1.0.0</version>
633+
<type>pom</type>
634+
</dependency>
635+
```
636+
Ivy:
637+
``` groovy
638+
<dependency org='com.abrahamcaijin.commonutil' name='CommonUtil' rev='1.0.0'>
639+
<artifact name='CommonUtil' ext='pom' ></artifact>
640+
</dependency>
641+
```
642+
## How to use
643+
644+
```
645+
// init it in the function of onCreate in ur Application
646+
AppUtils.init(context);
647+
```
648+
## Proguard
649+
650+
```
651+
-keep class com.jingewenku.abrahamcaijin.commonutil.** { *; }
652+
-keepclassmembers class com.jingewenku.abrahamcaijin.commonutil.** { *; }
653+
-dontwarn com.jingewenku.abrahamcaijin.commonutil.**
654+
```

0 commit comments

Comments
 (0)