Skip to content

Commit

Permalink
Merge pull request #88 from VictorKabata/develop-temp
Browse files Browse the repository at this point in the history
Clean up
  • Loading branch information
VictorKabata authored Jul 6, 2023
2 parents 7d565f1 + 9d81ae6 commit 420e224
Show file tree
Hide file tree
Showing 9 changed files with 264 additions and 144 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@
.externalNativeBuild
.cxx
local.properties

#Cocopods
app-iOS/Pods/
app-iOS/Podfile.lock
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ An android and desktop app built using [Kotlin Multiplatforom](https://kotlinlan
## Table Of Content

- [Prerequisite](##prerequisite)
- [Running](##running)
- [Pros of KMP/KMM](##pros-of-kmpkmm)
- [App Structure](##app-structure)
- [1. androidApp](###1-androidapp)
Expand Down Expand Up @@ -51,6 +52,20 @@ An android and desktop app built using [Kotlin Multiplatforom](https://kotlinlan

// ToDo

## Running

Set up the `local.properties` file in the project's root directory (if it doesn't already exist) by adding the following properties:

```properties
api_key=<YOUR TMDB API KEY>
```

Run with the following command:

```bash
./gradlew run
```

## Pros of KMP/KMM

- Faster development since you only need to write most of the business logic and tests only once.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ subprojects {
}

tasks.register("clean").configure {
delete("build")
delete("build") // dependencyUpdates task, for example, writes here
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Sat Mar 18 19:49:22 EAT 2023
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 420e224

Please sign in to comment.