Skip to content

Commit

Permalink
Update link to tutorial after repo rename and version too (apollograp…
Browse files Browse the repository at this point in the history
…hql#3705)

* Update link to tutorial after repo rename and version too

* Use apollo-kotlin-tutorial instead of apollo-android-tutorial
  • Loading branch information
BoD authored Dec 14, 2021
1 parent 74d79d9 commit b70b17f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/source/tutorial/00-introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Welcome! This tutorial demonstrates adding the Apollo Kotlin SDK to an app to co
The tutorial uses an instance of [Apollo Server](https://www.apollographql.com/docs/apollo-server/) hosted on Heroku, and an [Apollo Studio Sandbox](https://studio.apollographql.com/sandbox/explorer?endpoint=https%3A%2F%2Fapollo-fullstack-tutorial.herokuapp.com) which connects to that server. If you're curious about how to build your own
server, see the [Apollo full-stack tutorial](https://www.apollographql.com/docs/tutorial/introduction/).

All of the code for this tutorial is available [on GitHub](https://github.com/apollographql/apollo-android-3-tutorial).
All of the code for this tutorial is available [on GitHub](https://github.com/apollographql/apollo-kotlin-tutorial).

## What are you building?

Expand All @@ -26,7 +26,7 @@ The tutorial uses the following tools and frameworks:
* [ViewBinding](https://developer.android.com/topic/libraries/view-binding), [Navigation Component](https://developer.android.com/guide/navigation/navigation-getting-started), [ConstraintLayout](https://developer.android.com/training/constraint-layout) and [RecyclerView](https://developer.android.com/guide/topics/ui/layout/recyclerview).
* [Coil](https://github.com/coil-kt/coil) for image loading.

To focus on the important parts, this tutorial uses a starter project available at [https://github.com/apollographql/apollo-android-3-tutorial](https://github.com/apollographql/apollo-android-3-tutorial) so you don't have to deal with project setup and boilerplate.
To focus on the important parts, this tutorial uses a starter project available at [https://github.com/apollographql/apollo-kotlin-tutorial](https://github.com/apollographql/apollo-kotlin-tutorial) so you don't have to deal with project setup and boilerplate.

> If you encounter any issues during the tutorial, feel free to ask questions by either [opening an issue on our GitHub repo](https://github.com/apollographql/apollo-android/issues), [joining the community](http://community.apollographql.com/new-topic?category=Help&tags=mobile,client) or [stopping by our channel in the KotlinLang Slack](https://app.slack.com/client/T09229ZC6/C01A6KM1SBZ)(get your invite [here](https://slack.kotl.in/)).
Expand Down
10 changes: 5 additions & 5 deletions docs/source/tutorial/01-configure-project.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ In this step, you'll import the starter project and add the Apollo Kotlin SDK to
## Clone the starter project

```
git clone https://github.com/apollographql/apollo-android-3-tutorial
cd apollo-android-3-tutorial
git clone https://github.com/apollographql/apollo-kotlin-tutorial
cd apollo-kotlin-tutorial
git checkout initial
```

Expand All @@ -32,7 +32,7 @@ Now you will add Apollo Kotlin to the project.

You can find the latest version of Apollo Kotlin from the [github releases page](https://github.com/apollographql/apollo-android/releases). It is also displayed at the top of the [apollo-android repo](https://github.com/apollographql/apollo-android/).

This tutorial uses `3.0.0-rc01` because it is the latest version at the time of writing. Feel free to use a more recent version if one is available.
This tutorial uses `3.0.0-rc03` because it is the latest version at the time of writing. Feel free to use a more recent version if one is available.

## Apply the plugin

Expand All @@ -42,7 +42,7 @@ Apply the Apollo plugin in `app/build.gradle.kts`. There are two `build.gradle.k
plugins {
id("com.android.application")
// ...
id("com.apollographql.apollo3").version("3.0.0-rc01")
id("com.apollographql.apollo3").version("3.0.0-rc03")
}
```

Expand All @@ -65,7 +65,7 @@ Now add `apollo-runtime` to the list of dependencies. This is the actual code th
```groovy:title=app/build.gradle.kts
dependencies {
// ...
implementation("com.apollographql.apollo3:apollo-runtime:3.0.0-rc01")
implementation("com.apollographql.apollo3:apollo-runtime:3.0.0-rc03")
}
```

Expand Down
2 changes: 1 addition & 1 deletion samples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ If you're looking for a specific feature (APQs, Codegen options, `@nonnull`, ...

For more general examples demonstrating how to build an App end to end, check:

* https://github.com/apollographql/apollo-android-tutorial for an **Android App** example
* https://github.com/apollographql/apollo-kotlin-tutorial for an **Android App** example
* https://github.com/joreilly/MortyComposeKMM for a **Multiplatform App** example

0 comments on commit b70b17f

Please sign in to comment.