-
Notifications
You must be signed in to change notification settings - Fork 662
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
use proper singularized version of species in the sample #150
Conversation
Oh, sample now uses pojo now so no need for that. I'll just verify that the generated |
45f3475
to
22a6dfa
Compare
@@ -6,7 +6,7 @@ ext { | |||
|
|||
dep = [ | |||
androidPlugin: 'com.android.tools.build:gradle:2.3.0-beta3', | |||
apolloPlugin: "com.apollographql.android:gradle-plugin:0.1.0", | |||
apolloPlugin: "com.apollographql.android:gradle-plugin:0.2.0-SNAPSHOT", |
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.
Is it worth having some kind of a dev
branch that we build snapshots off instead and make that our target branch? and keep master for the releases?
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'm not a fan of having development outside of master, we can keep master always pointing to the SNAPSHOTS I think. This shouldn't be pointing to 0.1.0 in the first place
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.
Ahh, fair enough. That solves it.
22a6dfa
to
05c8f04
Compare
Updates the apollo plugin version to pick up the changes
05c8f04
to
7fa4f1c
Compare
README.md
Outdated
MAPPER.map(reader, this); | ||
} | ||
|
||
public Species(@Nonnull String id, @Nullable String name, @Nullable String classification) { |
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.
will get rid of this. I just copied off the generated class.
README.md
Outdated
@@ -134,16 +157,37 @@ public final class DroidDetails implements Query<Operation.Variables> { | |||
} | |||
}; | |||
|
|||
public static final Creator CREATOR = new Creator() { |
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.
will get rid of this too.
00d2633
to
001b21e
Compare
@marwanad but does compiler correctly generate interface names for Species ? |
@sav007 It does for 0.2-SNAPSHOT, not for 0.1.0. Shall we remove that/update the README to use the snapshot version? |
Should be 🍏 once it picks up the new plugin snapshot.
Closes #77