https://github.com/nikki1930/first-app
๐งฎ First-app โ Basic Calculator in Kotlin First-app is a beginner-friendly calculator app built with Kotlin .It performs essential arithmetic operations โ add, subtract, multiply and divide โ through a clean and minimal interface. This project kickstarted my Android journey and helped me understand the building blocks of android development . ๐
https://github.com/nikki1930/first-app
android android-application android-studio basic-app basic-learning begginer-project calculator kotlin learning-project mobile-development open-source
Last synced: 3 months ago
JSON representation
๐งฎ First-app โ Basic Calculator in Kotlin First-app is a beginner-friendly calculator app built with Kotlin .It performs essential arithmetic operations โ add, subtract, multiply and divide โ through a clean and minimal interface. This project kickstarted my Android journey and helped me understand the building blocks of android development . ๐
- Host: GitHub
- URL: https://github.com/nikki1930/first-app
- Owner: Nikki1930
- Created: 2025-04-08T15:59:58.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-04-08T18:50:56.000Z (10 months ago)
- Last Synced: 2025-05-15T20:11:38.408Z (9 months ago)
- Topics: android, android-application, android-studio, basic-app, basic-learning, begginer-project, calculator, kotlin, learning-project, mobile-development, open-source
- Language: Kotlin
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# First-app ๐ก
Welcome to **First-app** โ my very first Kotlin-based project using **Gradle**!
This repository marks the beginning of my journey into app development, where Iโm learning the fundamentals of **Kotlin**, **project structure**, and **build tools**. ๐
---
## ๐ Whatโs Inside
This is a very basic setup intended to explore how Kotlin projects are structured and built using Gradle.
### ๐๏ธ Project Structure
A quick look at the main folders and files:
.idea/ โ Android Studio project settings (auto-generated)
app/ โ Main application code (Kotlin source files, manifests, etc.)
gradle/ โ Gradle wrapper files for build automation
.gitignore โ Tells Git which files/folders to ignore
build.gradle.kts โ Main Gradle build configuration (Kotlin DSL)
gradle.properties โ Central configuration for Gradle
gradlew / gradlew.bat โ Scripts to run Gradle on Unix/Windows
settings.gradle.kts โ Gradle settings (project name, modules)
## ๐ ๏ธ Built With
- [Kotlin](https://kotlinlang.org/)
- [Gradle](https://gradle.org/)
- [Android Studio](https://developer.android.com/studio)
---
## ๐ What I Learned
- Basics of Kotlin syntax and structure
- Setting up and using Gradle in Android Studio
- How to create and push projects to GitHub
- Understanding Android project structure
---
## ๐ง Future Plans
- Add a simple UI using Jetpack Compose or XML
- Implement basic navigation or form input
- Explore data persistence (Room DB or SharedPreferences)
- Improve app architecture (MVVM pattern)