-
Notifications
You must be signed in to change notification settings - Fork 366
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade libs #297
base: develop
Are you sure you want to change the base?
Upgrade libs #297
Conversation
Merge from origin
import okhttp3.Interceptor; | ||
|
||
@Module | ||
public interface DataBindModule { | ||
|
||
@Multibinds @ProviderScope Set<Interceptor> provideIntercptors(); | ||
@Multibinds | ||
Set<Interceptor> provideIntercptors(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@PeroviderScope
should stay in as it is important for third parties implementing ther own providers.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed as I updated Dagger and it does not allow Scopes on Multibinding anymore
@@ -39,12 +39,12 @@ | |||
) | |||
public class ProviderModule { | |||
|
|||
@Provides @ProviderScope @IntoSet ProviderWrapper provideVodoWrapper(final VodoProvider vodoProvider, | |||
@Provides @IntoSet ProviderWrapper provideVodoWrapper(final VodoProvider vodoProvider, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ProviderScope
should stay in
@@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro | |||
# When configured, Gradle will run in incubating parallel mode. | |||
# This option should only be used with decoupled projects. More details, visit | |||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | |||
# org.gradle.parallel=true | |||
org.gradle.parallel=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This may cause issues in ci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does it actually do it? would you mind if I add a check to disable on CI? this helps speed when building locally
No description provided.