Java Code Examples for com.jess.arms.utils.DataHelper#getCacheFile()
The following examples show how to use
com.jess.arms.utils.DataHelper#getCacheFile() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GlobalConfigModule.java From Aurora with Apache License 2.0 | 4 votes |
/** * 提供缓存文件 */ @Singleton @Provides File provideCacheFile(Application application) { return mCacheFile == null ? DataHelper.getCacheFile(application) : mCacheFile; }
Example 2
Source File: GlobalConfigModule.java From MVPArms with Apache License 2.0 | 4 votes |
/** * 提供缓存文件 */ @Singleton @Provides File provideCacheFile(Application application) { return mCacheFile == null ? DataHelper.getCacheFile(application) : mCacheFile; }