diff --git a/docs/source/tutorial/00-introduction.mdx b/docs/source/tutorial/00-introduction.mdx index dd8b76b2ecb..9cc9b9cdbc1 100644 --- a/docs/source/tutorial/00-introduction.mdx +++ b/docs/source/tutorial/00-introduction.mdx @@ -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? @@ -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/)). diff --git a/docs/source/tutorial/01-configure-project.mdx b/docs/source/tutorial/01-configure-project.mdx index c5d05ccaeaf..71fcc6b4e42 100644 --- a/docs/source/tutorial/01-configure-project.mdx +++ b/docs/source/tutorial/01-configure-project.mdx @@ -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 ``` @@ -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 @@ -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") } ``` @@ -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") } ``` diff --git a/samples/README.md b/samples/README.md index 5eaae949372..a5eb0cbd0d0 100644 --- a/samples/README.md +++ b/samples/README.md @@ -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