-
Notifications
You must be signed in to change notification settings - Fork 660
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
update the setup instructions #197
Conversation
README.md
Outdated
|
||
```groovy | ||
|
||
ext { | ||
kotlinVersion = '1.0.6' |
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.
Do we need this for sample?
README.md
Outdated
} | ||
repositories { | ||
jcenter() | ||
maven { url "https://jitpack.io" } |
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.
what dependency required this maven repo?
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.
removing.
README.md
Outdated
apply plugin: 'com.apollographql.android' | ||
|
||
dependencies { | ||
compile 'com.apollographql.android:api:0.1.0' |
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 believe plugin adds dep to api internally, so we don't need it explicitly, but we need to verify this
@sav007 updated with feedback, thanks! |
README.md
Outdated
|
||
dependencies { | ||
compile 'com.squareup.retrofit2:retrofit:2.1.0' | ||
compile 'com.apollographql.android:converter-pojo:0.1.0' |
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.
compile 'com.apollographql.android:converter-pojo:0.1.0' >> compile 'com.apollographql.android:converter:0.2.1-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.
might as well use dep.apolloConverter
+1, thanks :) |
The readme had laughable setup instructions. Laughable as in how funny it was that the gradle instructions were incorrect/incomplete :-)
This pr adds proper build.gradle configurations
close #196