https://github.com/simple-irc-client/android
https://github.com/simple-irc-client/android
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/simple-irc-client/android
- Owner: Simple-Irc-Client
- Created: 2026-06-16T21:28:26.000Z (4 days ago)
- Default Branch: main
- Last Pushed: 2026-06-16T23:05:50.000Z (4 days ago)
- Last Synced: 2026-06-17T01:08:18.307Z (4 days ago)
- Language: Kotlin
- Size: 1.05 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Irc Client — Android
Tauri 2 Android shell for [Simple Irc Client](../). It reuses the canonical
frontend (`../core`) and the Rust IRC transport crate (`../network-rs`, `sic-irc`)
exactly as the desktop app does — see `../PROJECT_STRUCTURE.md`.
## Architecture
- **UI:** `../core` (React + TS + Vite). The kernel is transport-agnostic;
`core/src/network/irc/transport.ts` auto-selects the Tauri transport inside a
Tauri webview (Android included).
- **Transport:** `../network-rs` (`sic-irc`) via the thin Tauri glue in
`src-tauri/src/irc/` (shared verbatim with `desktop/src-tauri/src/irc/`).
- No gateway dependency — connects directly to IRC over TCP/TLS.
## Prerequisites
- Rust + the Android targets:
`aarch64-linux-android armv7-linux-androideabi i686-linux-android x86_64-linux-android`
- Android SDK + NDK, with `ANDROID_HOME` and `NDK_HOME` exported
- JDK 17+
## Build & run
```sh
pnpm install
pnpm run core:build # build ../core into ../core/dist
pnpm run android:init # one-time: generate src-tauri/gen/android
pnpm run android:dev # run on emulator/device
pnpm run android:build # release AAB/APK
```