https://github.com/guanshiyin28/volume-balok-app
Volume Balok App made by Kotlin Language
https://github.com/guanshiyin28/volume-balok-app
android-studio kotlin kotlin-android kotlin-library kotlin-multiplatform
Last synced: 3 months ago
JSON representation
Volume Balok App made by Kotlin Language
- Host: GitHub
- URL: https://github.com/guanshiyin28/volume-balok-app
- Owner: guanshiyin28
- License: apache-2.0
- Created: 2024-12-06T06:31:02.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-01-26T04:29:57.000Z (3 months ago)
- Last Synced: 2025-01-26T05:19:19.420Z (3 months ago)
- Topics: android-studio, kotlin, kotlin-android, kotlin-library, kotlin-multiplatform
- Language: Kotlin
- Homepage: https://youtu.be/w_hAPQ5cA9g
- Size: 1.95 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Volume Balok APP
This repository contains the source code for a Volume Balok (Cuboid) calculator application developed using the Kotlin language within the Android Studio environment.
## Purpose of This Repository
To provide a simple and efficient tool for calculating the volume of a rectangular prism.
## Demonstration
Below is a demonstration of the Volume Balok APP in action:
```kotlin
fun calculateVolume(length: Double, width: Double, height: Double): Double {
return length * width * height
}fun main() {
val length = 5.0
val width = 3.0
val height = 2.0
val volume = calculateVolume(length, width, height)
println("The volume of the cuboid is: $volume")
}
```
## Releases
You can find the latest releases [here](https://github.com/guanshiyin28/Volume-Balok-APP/releases).
## Features
- Simple and intuitive user interface
- Real-time volume calculation
- Error handling for invalid inputs
## Technologies Used
- Kotlin
- Android Studio
## Project Setup
1. **Ensure you have Android Studio installed on your machine.**
2. **Clone this repository:**```bash
git clone https://github.com/guanshiyin28/Volume-Balok-APP.git
```3. **Open the project in Android Studio.**
## Steps to Run
1. **Build the project in Android Studio.**
2. **Run the project on an emulator or a physical device.**
## License
This project is licensed under the Apache-2.0 License. See the [LICENSE](LICENSE) file for details.