A Personalised, cross-platform note-taking application with powerful Whisper AI Voice to Text capabilities built with Compose Multiplatform.
This is a Personalised fork of the original Notely Voice project, focused on simplifying the UI, adding additional capture methods, focusing on Android development, and integration with Logseq and Obsidian.
Perfect for students capturing lectures, professionals documenting meetings, researchers transcribing interviews, and anyone needing accessible hands-free note-taking with seamless integration to their knowledge management systems.
Download the latest APK files directly from GitHub Releases:
- Debug APK:
notely-capture-vX.X.X-debug.apk- For testing and development - Release APK:
notely-capture-vX.X.X-release.apk- For production use
Installation: Enable "Install from unknown sources" in Android settings, then install the downloaded APK file.
π Logseq Integration - Export notes directly to Logseq
π Obsidian Integration - Seamless workflow with Obsidian vaults
π― Android Focus - Optimized primarily for Android devices
β¨ Streamlined Interface - Cleaner, more focused user experience
π Performance - Reduced complexity for better performance
βοΈ Rich Text Editing - Format your notes with:
- Headers and sub-headers
- Title styling
- Bold, italic, and underline text
- Text alignment (left, right, center)
π Simple Search - Find your notes instantly with text search
π Smart Filtering - Filter notes by type (Starred, Voice Notes, Recent)
π Organization - Categorize notes with folders and tags
ποΈ Advanced Speech-to-Text - Convert speech to text with high accuracy
π Offline Capability - Speech recognition works without an internet connection
π Seamless Integration - Dictate directly into notes or transcribe audio recordings
π§ Audio Recording - Record voice notes and play them back within the app
π§ Unlimited Transcriptions - Transcribe unlimited voice notes to multiple languages
β‘ Variable Speed Playback - Adjust audio playback speed (1x, 1.5x, 2x) for faster note review
π Theming - Switch between dark and light themes based on your preference
π» Cross-Platform - Seamless experience across Android & iOS
π± Share Audio Functionality - Share audios recorded on the App to Messages, WhatsApp, Files, Google Drive etc
π± Share Texts - Share texts on the App to Messages, WhatsApp, Files, Google Drive etc
-
OpenAI Whisper - State-of-the-art open-source automatic speech recognition
- Robust multilingual speech recognition with support for over 50 languages
- Trained on 680,000 hours of multilingual and multitask supervised data
- Excellent performance across diverse audio conditions and accents
- Can run locally without internet dependency once model is downloaded
-
Cross-Platform Compatibility - Designed for versatile deployment
- Consistent speech recognition quality across different operating systems
- Flexible model sizes from tiny (39 MB) to large (1550 MB) based on accuracy needs
- Advanced noise robustness and speaker independence
- Perfect for applications requiring high-quality transcription in various environments
- Kotlin - Official programming language for Android development
- Compose Multiplatform - UI toolkit for building native applications
- Coroutines - For asynchronous programming
- Clean Architecture - Ensures scalability and testability
- ViewModel - Stores and manages UI-related data
- Koin - Dependency injection for Android
- Material 3 - Design system for modern UI
- Whisper AI - Human level robustness speech recognition
- Native Compose Navigation - No third-party navigation libraries
- Custom Text Editor - Built from scratch without external editing libraries
Notely is built with Clean Architecture principles, separating the app into distinct layers:
- UI Layer: Compose UI components
- Presentation Layer: Platform Independent ViewModels
- Domain Layer: Business logic and use cases
- Data Layer: Repositories and data sources
shared/: Contains shared business logic and UI code.
androidApp/: Contains Android-specific code.
iosApp/: Contains iOS-specific code.
The project uses Kotlin Multiplatform Android source set layout V2 for modern KMP best practices:
shared/src/androidMain/- Android-specific implementation codeshared/src/androidInstrumentedTest/- Android instrumented testsshared/src/commonMain/- Shared code across platformsshared/src/commonTest/- Shared testsshared/src/iosMain/- iOS-specific implementation code
This fork maintains sync with the original Notely Voice repository:
# Quick sync using the helper script
./upstream-sync.sh- Package names unchanged for store compatibility
- Smart merge rules via
.gitattributespreserve customizations - Automated conflict resolution for UI strings and metadata
- Roadmap tracking in this README
- UI Simplification: Streamlined navigation and reduced complexity
- Additional Capture Methods: Quick voice memo widget, background recording
- Android Focus: Material You theming, Android-specific optimizations
- Knowledge Management: Logseq export, Obsidian vault sync, markdown optimization
Contributions to Notely Capture are welcome! Please follow the feature branch workflow:
-
Create a feature branch from
main:git checkout -b feature/your-feature-name
-
Develop your feature following the project guidelines in
CLAUDE.md -
Submit a Pull Request within this fork:
gh pr create --base main --head feature/your-feature-name --repo stanvx/NotelyCapture
-
Follow the PR template with clear description of changes, testing checklist, and impact assessment
To create a new release with APK distribution:
-
Update version in
shared/build.gradle.kts:versionCode = 16 versionName = "1.1.5"
-
Create and push a version tag:
git add . git commit -m "feat: bump version to 1.1.5" git tag v1.1.5 git push origin main git push origin v1.1.5
-
Automatic release creation: GitHub Actions will automatically:
- Build debug and release APKs
- Create a GitHub release with changelog
- Upload APK files as downloadable assets
- Features:
feature/description(e.g.,feature/logseq-integration) - Bug fixes:
fix/description(e.g.,fix/audio-recording-crash) - Refactoring:
refactor/description - Documentation:
docs/description
For upstream contributions: Generic bug fixes and widely applicable features should be contributed to the original Notely Voice project.
Personalization-specific features (Logseq integration, Android-focused optimizations, UI simplifications) belong in this fork.
- Android Studio Ladybug or newer
- XCode 16.1
- JDK 17 or higher
- Kotlin 2.2.0 or higher
-
Clone the repository
git clone https://github.com/stanvx/NotelyCapture.git
-
Open the project in Android Studio
-
Sync the project with Gradle files
-
Run the app on an emulator or physical device
Copyright (C) 2025 Notely Capture (forked from NotelyVoice)
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
## Original Project
This is a fork of the original [Notely Voice](https://github.com/tosinonikute/NotelyVoice) project by [tosinonikute](https://github.com/tosinonikute). Please consider supporting the original project and contributing to the upstream repository.






