🤖 Vibe Coded with Claude This project was built through an AI-assisted development session with Claude (Anthropic). It is shared as-is, without warranty of any kind. Test thoroughly before relying on it for anything critical.
Remember: if you don't like projects coded with AI help don't use them ;-)
Android companion app for Excerpta, the self-hosted link manager.
collect • annotate • remember
- Paginated link list with on-demand loading (swipe-to-refresh)
- Navigation drawer: hierarchical groups then tags
- Quick add via the FAB or the share button from Chrome/Firefox/etc.
- Contextual actions (long press): open, copy URL, make public/private, delete
- Offline cache: links stay accessible without network
- QR code configuration: scan the QR code from the web UI (Settings)
- API key encrypted locally (EncryptedSharedPreferences / AES-256)
- Adaptive icon, Material Design
Obtainium (recommended): tap the badge above, or manually add this URL in Obtainium (automatic updates):
https://raw.githubusercontent.com/notarobot63/excerpta-android/main/obtainium.html
Direct APK (always the latest version):
https://github.com/notarobot63/excerpta-android/releases/latest/download/excerpta-android.apk
Releases follow SemVer and are published by git tag:
git tag v1.2.0
git push origin v1.2.0Only a v* tag creates a signed release; the Obtainium badge and the direct APK
link above always point to the latest one. A push to main still runs the CI
build, but the resulting APK is kept as a run artifact (14 days) instead of being
published.
versionName is the tag without its v (1.2.0), or <count>-dev+<commit> for
a build made outside a release. versionCode stays derived from the commit
count: it must increase monotonically, otherwise Android refuses to update
existing installations.
The server app follows its own release cycle: the contract between the two is
carried by the /api/v1/ prefix, not by a shared version number.
- Install the APK
- Open the app → scan the QR code shown in Excerpta → Settings
- The server URL and API key are configured automatically
git clone https://github.com/notarobot63/excerpta-android.git
cd excerpta-android
# Debug build (unsigned)
./gradlew assembleDebugThe resulting APK is at app/build/outputs/apk/debug/app-debug.apk.
- Kotlin + Coroutines
- Material Design 3
- EncryptedSharedPreferences (security-crypto)
- ZXing (QR code scanning)
GNU Affero General Public License v3.0 - free to fork, strong copyleft, attribution required.


