From 174c1f7df53a5a805dd70dc2c39107c40e63acc6 Mon Sep 17 00:00:00 2001 From: Sunit Roy Date: Wed, 20 Oct 2021 14:39:31 +0530 Subject: [PATCH] Updated Readme Links & Commands --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79f96cc00..6903ea7cf 100644 --- a/README.md +++ b/README.md @@ -21,24 +21,24 @@ This project hosts each sample app in separate repository branches. For more inf ### Stable samples - Kotlin | Sample | Description | | ------------- | ------------- | -| [master](https://github.com/googlesamples/android-architecture/tree/master) | The base for the rest of the branches.
Uses Kotlin, Architecture Components, coroutines, Data Binding, etc. and uses Room as source of truth, with a reactive UI. | -| [dagger-android](https://github.com/googlesamples/android-architecture/tree/dagger-android)
[[compare](https://github.com/googlesamples/android-architecture/compare/dagger-android#files_bucket)] | A simple Dagger setup that uses `dagger-android` and removes the two flavors. | -| [usecases](https://github.com/googlesamples/android-architecture/tree/usecases)
[[compare](https://github.com/googlesamples/android-architecture/compare/usecases#files_bucket)] | Adds a new domain layer that uses UseCases for business logic. | +| [master](https://github.com/android/architecture-samples/tree/master) | The base for the rest of the branches.
Uses Kotlin, Architecture Components, coroutines, Data Binding, etc. and uses Room as source of truth, with a reactive UI. | +| [dagger-android](https://github.com/android/architecture-samples/tree/dagger-android)
[[compare](https://github.com/android/architecture-samples/compare/dagger-android#files_bucket)] | A simple Dagger setup that uses `dagger-android` and removes the two flavors. | +| [usecases](https://github.com/android/architecture-samples/tree/usecases)
[[compare](https://github.com/android/architecture-samples/compare/usecases#files_bucket)] | Adds a new domain layer that uses UseCases for business logic. | ### Old samples - Kotlin and Java -Blueprints v1 had a collection of samples that are not maintained anymore, but can still be useful. See [all project branches](https://github.com/googlesamples/android-architecture/branches). +Blueprints v1 had a collection of samples that are not maintained anymore, but can still be useful. See [all project branches](https://github.com/android/architecture-samples/branches). ## Why a to-do app? A demo illustraating the UI of the app -The app in this project aims to be simple enough that you can understand it quickly, but complex enough to showcase difficult design decisions and testing scenarios. For more information, see the [app's specification](https://github.com/googlesamples/android-architecture/wiki/To-do-app-specification). +The app in this project aims to be simple enough that you can understand it quickly, but complex enough to showcase difficult design decisions and testing scenarios. For more information, see the [app's specification](https://github.com/android/architecture-samples/wiki/To-do-app-specification). ## What is it not? -* A UI/Material Design sample. The interface of the app is deliberately kept simple to focus on architecture. Check out [Plaid](https://github.com/android/plaid) instead. -* A complete Jetpack sample covering all libraries. Check out [Android Sunflower](https://github.com/googlesamples/android-sunflower) or the advanced [Github Browser Sample](https://github.com/googlesamples/android-architecture-components/tree/master/GithubBrowserSample) instead. +* A UI/Material Design sample. The interface of the app is deliberately kept simple to focus on architecture. Check out [Plaid](https://github.com/nickbutcher/plaid) instead. +* A complete Jetpack sample covering all libraries. Check out [Android Sunflower](https://github.com/android/sunflower) or the advanced [Github Browser Sample](https://github.com/android/architecture-components-samples/tree/master/GithubBrowserSample) instead. * A real production app with network access, user authentication, etc. Check out the [Google I/O app](https://github.com/google/iosched), [Santa Tracker](https://github.com/google/santa-tracker-android) or [Tivi](https://github.com/chrisbanes/tivi) for that. ## Who is it for? @@ -48,12 +48,12 @@ The app in this project aims to be simple enough that you can understand it quic ## Opening a sample in Android Studio -To open one of the samples in Android Studio, begin by checking out one of the sample branches, and then open the root directory in Android Studio. The following series of steps illustrate how to open the [usecases](tree/usecases/) sample. +To open one of the samples in Android Studio, begin by checking out one of the sample branches, and then open the root directory in Android Studio. The following series of steps illustrate how to open the [usecases](https://github.com/android/architecture-samples/tree/usecases) sample. Clone the repository: ``` -git clone git@github.com:googlesamples/android-architecture.git +git clone git@github.com:android/architecture-samples.git ``` This step checks out the master branch. If you want to change to a different sample: @@ -63,7 +63,7 @@ git checkout usecases **Note:** To review a different sample, replace `usecases` with the name of sample you want to check out. -Finally open the `android-architecture/` directory in Android Studio. +Finally open the `architecture-samples/` directory in Android Studio. ### License