BTree is bookmark management application for iOS and Android, Windows, macOS.
BTree is created by Compose Multiplatform.
- Manage bookmark directories and links on the tree structure.
- Create and delete the bookmark directory and link.
- Edit bookmark directory and link.
- Open bookmark link website.
Class | Detailas |
---|---|
Screen | Screen inherite voyger Screen class. Screen define view hierarchy. |
Component | Component define a single view. |
State | State define data that displayed on UI. |
ScreenModel | ScreenModel inherite voyger ScreenModel class. ScreenModel manage Screen's lifecycle and state. |
Repository | Repository manage remote resource and local resource. |
Name | Details |
---|---|
Compose Multiplatform | UI Framework |
Kotlin Serialization | Serialize and desrialize data |
Kotlin Coroutines | Launch ansyncronous execution |
Koin | Dependency injection container |
Voyager | Screen and navigation management |
Multiplatform Settings | Save and load application data |
InsetsX | Control status icon color |
- check your system with KDoctor
- install JDK 8 on your machine
- add
local.properties
file to the project root and set a path to Android SDK there - run
./gradlew podInstall
in the project root
To run the application on android device/emulator:
- open project in Android Studio and run imported android run configuration
To build the application bundle:
- run
./gradlew :composeApp:assembleDebug
- find
.apk
file incomposeApp/build/outputs/apk/debug/composeApp-debug.apk
Run the desktop application: ./gradlew :composeApp:run
To run the application on iPhone device/simulator:
- Open
iosApp/iosApp.xcworkspace
in Xcode and run standard configuration - Or use Kotlin Multiplatform Mobile plugin for Android Studio
Copyright (c) 2023 Yusuke Katsuragawa
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.