Skip to content
Open
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ stream-chat-android-offline @GetStream/android-developers
stream-chat-android-pushprovider-firebase @GetStream/android-developers
stream-chat-android-pushprovider-huawei @GetStream/android-developers
stream-chat-android-pushprovider-xiaomi @GetStream/android-developers
stream-chat-android-state @GetStream/android-developers
stream-chat-android-test @GetStream/android-developers

# UI
Expand Down
3 changes: 1 addition & 2 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ This project delivers **Stream Chat Android**, a modular SDK spanning low-level
- Testing: JUnit4/5, Mockito-Kotlin, Turbine, Robolectric, Espresso, Paparazzi, Shot

## Project structure
- `stream-chat-android-client/` – core API client, REST/WebSocket, plugin hooks
- `stream-chat-android-client/` – core API client, REST/WebSocket, plugin hooks, state container
- `stream-chat-android-offline/` – persistence, sync, caching, retry workers
- `stream-chat-android-state/` – state container shared by UI layers
- `stream-chat-android-ui-common/` – theming, assets, shared UI helpers
- `stream-chat-android-compose/` & `stream-chat-android-ui-components/` – Compose and XML UI kits
- `*-sample/`, `stream-chat-android-ui-uitests/`, `stream-chat-android-test/` – samples, integration, and shared test harnesses
Expand Down
11 changes: 0 additions & 11 deletions CHANGELOG_MODEL.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,6 @@

### ❌ Removed

## stream-chat-android-state
### 🐞 Fixed

### ⬆️ Improved

### ✅ Added

### ⚠️ Changed

### ❌ Removed

## stream-chat-android-ui-common
### 🐞 Fixed

Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ If you haven't already, make sure to read our [README](https://github.com/GetStr
- `stream-chat-android-client`: Holds all the code connected to the **low-level-client**, used to request data from and send information to the API.
- `stream-chat-android-offline`: As an addition to the **client** module, you can use **offline** to introduce persistence and caching to your app.
- `stream-chat-android-ui-common`: Common UI-related code and utility functions.
- `stream-chat-android-state`: Module that contains common state-related API and functionality, such as syncing and persisting state and various messages.

- `stream-chat-android-compose-sample`: The main sample app featuring the Compose SDK.
- `stream-chat-android-compose`: Our Compose SDK that features channels and messages components, as well as other utilities.
Expand Down
1 change: 0 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ streamProject {
"stream-chat-android-core",
"stream-chat-android-markdown-transformer",
"stream-chat-android-offline",
"stream-chat-android-state",
"stream-chat-android-ui-common",
"stream-chat-android-ui-utils",
)
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ end

private_lane :sources_matrix do
{
unit: ['stream-chat-android-test', 'stream-chat-android-client', 'stream-chat-android-compose/', 'stream-chat-android-core', 'stream-chat-android-markdown-transformer', 'stream-chat-android-offline', 'stream-chat-android-state', 'stream-chat-android-ui-common', 'stream-chat-android-ui-components/', 'stream-chat-android-ui-utils/'],
unit: ['stream-chat-android-test', 'stream-chat-android-client', 'stream-chat-android-compose/', 'stream-chat-android-core', 'stream-chat-android-markdown-transformer', 'stream-chat-android-offline', 'stream-chat-android-ui-common', 'stream-chat-android-ui-components/', 'stream-chat-android-ui-utils/'],
ui: ['stream-chat-android-ui', '.github/workflows/snapshot-test'],
e2e: ['buildSrc', 'stream-chat-android', '.github/workflows/e2e-test'],
sonar: ['stream-chat-android-client/', 'stream-chat-android-compose/', 'stream-chat-android-core/', 'stream-chat-android-markdown-transformer/', 'stream-chat-android-offline/', 'stream-chat-android-state/', 'stream-chat-android-ui-common/', 'stream-chat-android-ui-components/', 'stream-chat-android-ui-utils/'],
sonar: ['stream-chat-android-client/', 'stream-chat-android-compose/', 'stream-chat-android-core/', 'stream-chat-android-markdown-transformer/', 'stream-chat-android-offline/', 'stream-chat-android-ui-common/', 'stream-chat-android-ui-components/', 'stream-chat-android-ui-utils/'],
ruby: ['fastlane', 'Gemfile', 'Gemfile.lock']
}
end
Expand Down
1 change: 0 additions & 1 deletion scripts/local-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ modules=(
"stream-chat-android-markdown-transformer"
"stream-chat-android-previewdata"
"stream-chat-android-offline"
"stream-chat-android-state"
"stream-chat-android-ui-common"
"stream-chat-android-ui-components"
"stream-chat-android-ui-utils"
Expand Down
5 changes: 2 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,12 @@ plugins {
id("com.gradle.enterprise") version "3.7"
}
include (
":stream-chat-android-ui-utils",
":stream-chat-android-ui-utils",
":stream-chat-android-ui-common",
":stream-chat-android-ui-components",
":stream-chat-android-ui-components-sample",
":stream-chat-android-ui-guides",
":stream-chat-android-state",
":stream-chat-android-offline",
":stream-chat-android-offline",
":stream-chat-android-client",
":stream-chat-android-client-test",
":stream-chat-android-core",
Expand Down
Loading
Loading