Joan Zapata

Results 60 comments of Joan Zapata

As a workaround, have you tried using `AsyncService.inject(this)` in your Application's `onCreate` method? It should save the context from there.

Yep, exactly. I thought on the moment that it would work for most cases and then I forgot about it. I'll make one. Thanks for reporting.

``` java public class YourApplication extends Application { @Override public void onCreate() { AsyncService.inject(this); } } ``` Don't forget to declare this application class in your `AndroidManifest.xml`.

There's nothing in AsyncService to help you call some code every hour, so you should implement it yourself using something like the android `AlarmManager`, and call your AsyncService from it....

Thanks for this huge work! Unfortunately it seems it breaks `IconDrawable` when used as a compound drawable. ``` java tv.setText("fa-arrow-left"); tv.setCompoundDrawables( new IconDrawable(context, FontAwesomeIcons.fa_arrow_left).actionBarSize(context), null, null, null); ``` **before** ![device-2015-11-20-174320](https://cloud.githubusercontent.com/assets/675408/11305856/0389863a-8faf-11e5-95f7-702580a2d986.png)...

Yeah, you're right, sorry. I should really get some time to read more about `Drawable`. :-) ``` As there is no harm in implementing the state ``` IMHO, there is....

Yep, already merged it locally, thanks. :)

Sorry for the delay, this is the #1 thing in the roadmap of the project, I just can't find time right now.

November 2015.. Damn, time goes so fast, I really need to take care of this. I'm sorry for the delay.