Skip to content

Commit 0584d1e

Browse files
committed
Revert changes due to inconsistent branch naming.
1 parent 079b7e1 commit 0584d1e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
![banner](https://user-images.githubusercontent.com/37318022/40349145-3e0c8d8a-5dd8-11e8-8654-5784f9ab7554.png)
22

33
# Android - Clean Architecture - Kotlin [![Build Status](https://travis-ci.org/android10/Android-CleanArchitecture-Kotlin.svg?branch=main)](https://travis-ci.org/android10/Android-CleanArchitecture-Kotlin) [![codecov](https://codecov.io/gh/android10/Android-CleanArchitecture-Kotlin/branch/main/graph/badge.svg?token=x1AtDcNuDv)](https://codecov.io/gh/android10/Android-CleanArchitecture-Kotlin)
4-
The purpose of this repo is to follow up Clean Architecture principles by bringing them to Android. It is worth saying that the idea is to take advantage of the Kotlin Programming Language features plus also pull in lessons learned and ideas from other interesting aproaches like Functional Programming.
4+
The purpose of this repo is to follow up Clean Architecture principles by bringing them to Android. It is worth saying that the idea is to take advantage of the Kotlin Programming Language features plus also pull in lessons learned and ideas from other interesting approaches like Functional Programming.
55

66
## Blog post with implementation details explanation:
77
[Architecting Android… Reloaded](https://fernandocejas.com/2018/05/07/architecting-android-reloaded/)
@@ -28,22 +28,22 @@ Article, lessons learned and some more material coming up. Check the following k
2828
### ----------------------------------------------------------------------------------------------
2929

3030
## Clean Architecture
31-
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/main/Android-CleanArchitecture-Kotlin/architecture/clean_architecture_reloaded_main.png)
31+
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/master/Android-CleanArchitecture-Kotlin/architecture/clean_architecture_reloaded_main.png)
3232

3333
### ----------------------------------------------------------------------------------------------
3434

3535
## Android 3 Layers Architecture
36-
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/main/Android-CleanArchitecture-Kotlin/architecture/clean_architecture_reloaded_layers.png)
36+
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/master/Android-CleanArchitecture-Kotlin/architecture/clean_architecture_reloaded_layers.png)
3737

3838
### ----------------------------------------------------------------------------------------------
3939

4040
## UI Layer: MVVM
41-
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/main/Android-CleanArchitecture-Kotlin/architecture/clean_architecture_reloaded_mvvm_app.png)
41+
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/master/Android-CleanArchitecture-Kotlin/architecture/clean_architecture_reloaded_mvvm_app.png)
4242

4343
### ----------------------------------------------------------------------------------------------
4444

4545
## Data Layer: Repository
46-
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/main/Android-CleanArchitecture-Kotlin/architecture/clean_archictecture_reloaded_repository.png)
46+
![https://fernandocejas.com/2018/05/07/architecting-android-reloaded/](https://github.com/android10/Sample-Data/blob/master/Android-CleanArchitecture-Kotlin/architecture/clean_archictecture_reloaded_repository.png)
4747

4848
### ----------------------------------------------------------------------------------------------
4949

@@ -81,6 +81,6 @@ https://github.com/android10/java-code-styles
8181
limitations under the License.
8282

8383

84-
![https://fernandocejas.com](https://github.com/android10/Sample-Data/blob/main/android10/android10_logo_big.png)
84+
![https://fernandocejas.com](https://github.com/android10/Sample-Data/blob/master/android10/android10_logo_big.png)
8585

8686
<a href="https://www.buymeacoffee.com/android10" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: auto !important;width: auto !important;" ></a>

app/src/main/kotlin/com/fernandocejas/sample/core/di/ApplicationModule.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ApplicationModule {
3333

3434
@Provides @Singleton fun provideRetrofit(): Retrofit {
3535
return Retrofit.Builder()
36-
.baseUrl("https://raw.githubusercontent.com/android10/Sample-Data/main/Android-CleanArchitecture-Kotlin/")
36+
.baseUrl("https://raw.githubusercontent.com/android10/Sample-Data/master/Android-CleanArchitecture-Kotlin/")
3737
.client(createClient())
3838
.addConverterFactory(GsonConverterFactory.create())
3939
.build()

0 commit comments

Comments
 (0)