SmartCache icon indicating copy to clipboard operation
SmartCache copied to clipboard

A library for preloaded Retrofit responses.

Results 5 SmartCache issues
Sort by recently updated
recently updated
newest added

没有中文的说明文档吗?

Not sure if this can be used together with RxJava2CallAdapterFactory, since then I can't use SmartCall in my interface. I have to use Observable, which means the SmartCacheFactory will not...

I'm trying to make SmartCall this is my Code `Retrofit.Builder builder = new Retrofit.Builder() .baseUrl(G.Url + "/") .addConverterFactory(GsonConverterFactory.create(new Gson())); Retrofit retrofit = builder.client( ConnectionBuilder.getBuilder(activity).build() ).build(); ConnectionInterFace connectionInterFace = retrofit.create(ConnectionInterFace.class); connectionInterFace.getListbody(Url,...

Is there any way to force a particular URL to be fetched from the web again and update the cache with the result, or to purge a URL from the...