https://github.com/n4vrl0s3/intentapp
Intent App made by Kotlin Language
https://github.com/n4vrl0s3/intentapp
app intent kotlin kotlin-android simple-project
Last synced: 9 days ago
JSON representation
Intent App made by Kotlin Language
- Host: GitHub
- URL: https://github.com/n4vrl0s3/intentapp
- Owner: n4vrl0s3
- License: apache-2.0
- Created: 2024-12-06T18:26:59.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-03-16T23:00:54.000Z (about 1 month ago)
- Last Synced: 2025-04-14T01:52:30.058Z (9 days ago)
- Topics: app, intent, kotlin, kotlin-android, simple-project
- Language: Kotlin
- Homepage: https://youtu.be/1bz2JhoRxJU
- Size: 2.01 MB
- Stars: 8
- 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
# Intent APP
This repository contains the source code for an Intent-based application developed using the Kotlin language within the Android Studio environment.
## Purpose of This Repository
To provide a practical example of how to implement and utilize Intents within an Android application built using the Kotlin programming language.
## Demonstration
Here is a demonstration of a function from the project that shows how to move to another page using an Intent:
```kotlin
// filepath: /home/guan/Documents/Code/IntentAPP/app/src/main/java/com/example/intentapp/MainActivity.kt
fun moveToAnotherPage(view: View) {
val intent = Intent(this, AnotherActivity::class.java)
startActivity(intent)
}
```
## Releases
You can find the latest releases [here](https://github.com/n4vrl0s3/IntentAPP/releases).
## Features
- Demonstrates the use of explicit and implicit Intents
- Simple and clean user interface
- Easy to understand and extend
## Technologies Used
- Kotlin
- Android Studio
- XML for UI design
## Project Setup
1. **Ensure you have Android Studio installed on your machine.**
2. **Clone this Repository**```bash
git clone https://github.com/n4vrl0s3/IntentAPP.git
```3. **Open the project in Android Studio**
## Steps to Run
1. **Build the project**
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.