├── cachemanager ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── lujianchao │ │ │ │ └── cachemanager │ │ │ │ ├── BasicApp.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── CacheManager.java │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── lujianchao │ │ │ └── cachemanager │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── lujianchao │ │ └── cachemanager │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro └── build.gradle ├── .gitattributes ├── .gitignore └── README.md /cachemanager/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /cachemanager/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CacheManager 3 | 4 | -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itgowo/AndroidCacheManager/HEAD/cachemanager/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /cachemanager/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /cachemanager/src/main/java/com/lujianchao/cachemanager/BasicApp.java: -------------------------------------------------------------------------------- 1 | package com.lujianchao.cachemanager; 2 | 3 | import android.app.Application; 4 | 5 | /** 6 | * Created by hnvfh on 2017/3/14. 7 | */ 8 | 9 | public class BasicApp extends Application { 10 | 11 | @Override 12 | public void onCreate () { 13 | super.onCreate (); 14 | CacheManager.init (this); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /cachemanager/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /cachemanager/src/test/java/com/lujianchao/cachemanager/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.lujianchao.cachemanager; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect () throws Exception { 15 | assertEquals (4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /cachemanager/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 |