Skip to content

Commit

Permalink
Move sample app modules into subfolder.
Browse files Browse the repository at this point in the history
  • Loading branch information
christiandeange committed Nov 3, 2023
1 parent 77481ac commit 84f3650
Show file tree
Hide file tree
Showing 203 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ The Ozone project for the [AT Protocol](https://atproto.com/) consists of 3 comp

O<sub>3</sub> exists at all levels in the [ATmosphere](https://bsky.app/profile/shreyanjain.net/post/3k26nw6kwnh2e).

### Bluesky Social Client App
### Bluesky Social Client Apps

#### Usage

```shell
# Desktop app
./gradlew :desktop:run
./gradlew :app:desktop:run

# Android app
./gradlew :android:installDebug
./gradlew :app:android:installDebug
```

### Bluesky Social Bindings
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion android/build.gradle.kts → app/android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

dependencies {
implementation(project(":common"))
implementation(project(":app:common"))
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.appcompat)
implementation(libs.androidx.core)
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion common/build.gradle.kts → app/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kotlin {
implementation(libs.zoomable)

api(project(":bluesky"))
api(project(":store"))
api(project(":app:store"))

runtimeOnly(libs.slf4j.simple)
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion desktop/build.gradle.kts → app/desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ kotlin {
sourceSets {
val jvmMain by getting {
dependencies {
implementation(project(":common"))
implementation(project(":app:common"))
implementation(compose.desktop.currentOs)
}
}
Expand Down
File renamed without changes.
File renamed without changes.
11 changes: 7 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ dependencyResolutionManagement {

rootProject.name = "ozone"

include(":android")
// Sample app modules
include(":app:android")
include(":app:common")
include(":app:desktop")
include(":app:store")

// Published artifact modules
include(":api-gen-runtime")
include(":api-gen-runtime-internal")
include(":bluesky")
include(":common")
include(":desktop")
include(":store")

includeBuild("build-logic")
includeBuild("generator")

0 comments on commit 84f3650

Please sign in to comment.