Skip to content

Commit a237bf2

Browse files
authored
Merge pull request #29 from jarroyoesp/feature/update-deps
Feature: Remove unneded deps and update Readme
2 parents 2b6b50b + efea543 commit a237bf2

File tree

27 files changed

+2453
-3251
lines changed

27 files changed

+2453
-3251
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ Current supported Platforms are:
4949

5050
## Android 🤖
5151

52-
| <img width="240" src="./screenshots/android/home.png" /> | <img width="240" src="./screenshots/android/detail.png" /> | <img width="240" src="./screenshots/android/loading.png" /> |
53-
|----------------------------------------------------------|------------------------------------------------------------|-------------------------------------------------------------|
52+
| <img width="240" src="./screenshots/android/home.png" /> | <img width="240" src="./screenshots/android/detail.png" /> | <img width="240" src="./screenshots/android/loading.png" /> |
53+
|-------------------------------------------------------------|--------------------------------------------------------------|---------------------------------------------------------------|
54+
| <img width="240" src="./screenshots/android/graph.png" /> | | |
5455

5556
## Desktop 🖥️
5657

@@ -60,8 +61,9 @@ To execute the Desktop app run this `gradle` command:
6061
./gradlew desktop:run
6162
```
6263

63-
| <img width="240" src="./screenshots/desktop/home.png" /> | <img width="240" src="./screenshots/desktop/detail.png" /> | <img width="240" src="./screenshots/desktop/loading.png" /> |
64-
|----------------------------------------------------------|------------------------------------------------------------|-------------------------------------------------------------|
64+
| <img width="240" src="./screenshots/desktop/home.png" /> | <img width="240" src="./screenshots/desktop/detail.png" /> | <img width="240" src="./screenshots/desktop/loading.png" /> |
65+
|-------------------------------------------------------------|--------------------------------------------------------------|---------------------------------------------------------------|
66+
| <img width="240" src="./screenshots/desktop/graph.png" /> | | |
6567

6668
## iOS 🍎
6769
Steps to setup your iOS app:
@@ -82,8 +84,9 @@ $(SRCROOT)/../modules/feature-home-shared/build/xcode-frameworks/$(CONFIGURATION
8284

8385
More details [JetBrains official documentation](https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-integrate-in-existing-app.html#make-your-cross-platform-application-work-on-ios)
8486

85-
| <img width="240" src="./screenshots/ios/home.png" /> | <img width="240" src="./screenshots/ios/detail.png" /> | <img width="240" src="./screenshots/ios/loading.png" /> |
86-
|------------------------------------------------------|--------------------------------------------------------|---------------------------------------------------------|
87+
| <img width="240" src="./screenshots/ios/home.png" /> | <img width="240" src="./screenshots/ios/detail.png" /> | <img width="240" src="./screenshots/ios/loading.png" /> |
88+
|-------------------------------------------------------------|--------------------------------------------------------------|---------------------------------------------------------------|
89+
| <img width="240" src="./screenshots/ios/graph.png" /> | | |
8790

8891

8992
### Get the latest version of the GraphQL schema

app/build.gradle.kts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@ android {
2929
dependencies {
3030
// Modules
3131
implementation(projects.modules.featureHomeShared)
32-
implementation(projects.modules.libraryNavigation)
33-
implementation(projects.modules.libraryNetwork)
3432

35-
implementation(libs.androidx.core.ktx)
36-
implementation(libs.androidx.lifecycle.runtime)
3733
implementation(libs.androidx.activity.compose)
3834
implementation(libs.gitlive.firebase.firestore)
3935
implementation(libs.jetbrains.compose.ui)

app/src/main/java/com/jarroyo/composeapp/ComposeApp.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ import android.app.Application
44
import android.content.Context
55
import com.google.firebase.FirebaseApp
66
import com.jarroyo.feature.home.shared.di.initKoin
7-
import dagger.hilt.android.HiltAndroidApp
87
import org.koin.dsl.module
98

10-
@HiltAndroidApp
119
class ComposeApp : Application() {
1210
override fun onCreate() {
1311
super.onCreate()

app/src/main/java/com/jarroyo/composeapp/MainActivity.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@ import androidx.activity.ComponentActivity
55
import androidx.activity.compose.setContent
66
import com.jarroyo.composeapp.ui.theme.ComposeAppTheme
77
import com.jarroyo.feature.home.shared.ui.RootView
8-
import dagger.hilt.android.AndroidEntryPoint
98

10-
@AndroidEntryPoint
119
class MainActivity : ComponentActivity() {
1210
override fun onCreate(savedInstanceState: Bundle?) {
1311
super.onCreate(savedInstanceState)

app/src/main/java/com/jarroyo/composeapp/di/AppModule.kt

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)