stephanenicolas / robospice

Repo of the Open Source Android library : RoboSpice. RoboSpice is a modular android library that makes writing asynchronous long running tasks easy. It is specialized in network requests, supports caching and offers REST requests out-of-the box using extension modules.
Apache License 2.0
2.95k stars 545 forks source link

Update 'android-maven-plugin' plugin and few others #457

Open mykolaj opened 8 years ago

mykolaj commented 8 years ago

RS wasn't building with Java 8, and it soon became annoying to set JAVA_HOME to Java 7 every time. I've looked into it and found out about a new Java 8 feature called DocLint which blames our JavaDoc comments of being incomplete. So i switched this feature off so far: -Xdoclint:none in a second commit (db98ee8). Also this commit updates 'android-maven-plugin' in whole RS project and a few more maven plugins.

// ------------------------------------------------------------------ About the first one (db98ee8). There was this message printed everywhere in the log:

"Some file could not be deleted from cache."

As for me this massage does not say anything useful at all. And the second thing is the message is printed even when there's nothing in a cache, because of this piece of code: if (allDeleted || cacheFileList.length == 0) { Ln.d("Some file could not be deleted from cache."); } Here in case there are no files in the cache this message just keeps being printed. It is fixed in the first commit. Take a look if it is useful to you.