Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tfaki/android-success-build-gradle-task
This app include gradle task. If you build this app, you can hear the sound.
https://github.com/tfaki/android-success-build-gradle-task
android android-studio gradle gradle-tasks groovy kotlin kotlin-dsl
Last synced: about 1 month ago
JSON representation
This app include gradle task. If you build this app, you can hear the sound.
- Host: GitHub
- URL: https://github.com/tfaki/android-success-build-gradle-task
- Owner: tfaki
- Created: 2023-05-08T14:05:39.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-08T16:25:38.000Z (over 1 year ago)
- Last Synced: 2024-05-02T05:25:44.213Z (8 months ago)
- Topics: android, android-studio, gradle, gradle-tasks, groovy, kotlin, kotlin-dsl
- Language: Kotlin
- Homepage:
- Size: 2.14 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# IlkTurdaBitirelim
![Kotlin](https://img.shields.io/badge/kotlin-%230095D5.svg?style=for-the-badge&logo=kotlin&logoColor=white)
![Android](https://img.shields.io/badge/Android-3DDC84?style=for-the-badge&logo=android&logoColor=white)
![Android Studio](https://img.shields.io/badge/Android%20Studio-3DDC84.svg?style=for-the-badge&logo=android-studio&logoColor=white)
![Gradle](https://img.shields.io/badge/Gradle-02303A.svg?style=for-the-badge&logo=Gradle&logoColor=white)This app include gradle task. If you build this app, you can hear the sound.
## Gradle Task Sound
https://user-images.githubusercontent.com/37421570/236877541-46513876-fc11-4e87-b81d-b75328014446.mp4## How to use gradle task?
Add the following task to root/build.gradle 👇🏻- `w/KotlinDsl`
```
task("sayDone") {
doLast {
exec {
commandLine("say", "Ilk Turda Bitirelim")
}
}
}
```- `w/Groovy`
```
task sayDone {
doLast {
exec {
commandLine 'say', 'Ilk Turda Bitirelim'
}
}
}
```## Add gradle task to Before Launch in Edit Configuration