Kirill Boyarshinov

Results 5 issues of Kirill Boyarshinov

If the Service support in #1 will be added title `ActivityScreens` would not fit to all features provided. So the annotations `@ActivityScreen` and `@ActivityArg`. My thoughts on better naming had...

question

I have stumbled upon one problem I could not find right solution. The problem is within order of processing fields annotated with `@ActivityArg` annotation. They are processed in alphabetical order....

enhancement
question

Passing arguments to Service is the same process as to Activity, so Service support can be easily added. However, how to name generated helper classes for Services. They are not...

enhancement
question

Generated `Screen` classes has two methods to launch specified `Activity`: ``` public void open(Activity activity) { Intent intent = toIntent(activity); activity.startActivity(intent); } public void openForResult(Activity activity, int requestCode) { Intent...

question

Recently `Observable.fromCallable` operator was added to core package in `1.0.15`(https://github.com/ReactiveX/RxJava/pull/3154). It serves the same function as `Async.fromCallable` which means `fromCallable` in this package can be deprecated. cc @akarnokd @artem-zinnatullin

Cleanup