-
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
Refactor package structure #368
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
POM_ARTIFACT_ID=api | ||
POM_NAME=Apollo Android API | ||
POM_DESCRIPTION=Apollo Android API classes | ||
POM_ARTIFACT_ID=apollo-api | ||
POM_NAME=Apollo GraphQL API | ||
POM_DESCRIPTION=Apollo GraphQL API classes | ||
POM_PACKAGING=jar |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,4 @@ | |
/** TODO **/ | ||
public interface ResponseReader { | ||
<T> T read(Field field) throws IOException; | ||
|
||
interface ValueHandler { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. what happened to interface? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's not used, legacy (forgot to remove when we refactored response readers) |
||
void handle(int fieldIndex, Object value) throws IOException; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
POM_ARTIFACT_ID=runtime | ||
POM_NAME=ApolloStack Runtime | ||
POM_DESCRIPTION=Runtime library to support generated code | ||
POM_ARTIFACT_ID=apollo-runtime | ||
POM_NAME=Apollo GraphQL Runtime | ||
POM_DESCRIPTION=Apollo GraphQL runtime library to support generated code | ||
POM_PACKAGING=aar |
This file was deleted.
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.
Can do
-Dapollographql.skipRuntimeDep=true -x apollo-gradle-plugin:test
faster than commenting out next time 😀