mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-03-28 21:16:20 +01:00
gradle: edit assembleRelease example to show Android Studio specificity (#6194)
'assembleDebug' and 'assembleRelease' tasks are specific to Android Studio: https://developer.android.com/studio/build/building-cmdline#ReleaseMode https://stackoverflow.com/questions/44185165/what-are-the-differences-between-gradle-assemble-and-gradle-build-tasks They are not common tasks like 'build', 'assemble' and 'check': https://docs.gradle.org/current/userguide/command_line_interface.html#sec:command_line_executing_tasks
This commit is contained in:
parent
2682aa5d8c
commit
1c050a6e38
2 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@
|
|||
|
||||
`gradle build -x {{test}}`
|
||||
|
||||
- Ejecuta en modo offline para prevenir que gradle acceda a la red durante una compilación:
|
||||
- Ejecuta en modo offline para prevenir que Gradle acceda a la red durante una compilación:
|
||||
|
||||
`gradle build --offline`
|
||||
|
||||
|
@ -19,6 +19,6 @@
|
|||
|
||||
`gradle clean`
|
||||
|
||||
- Compila y genera un paquete:
|
||||
- Compila un paquete Android (APK) en modo lanzamiento:
|
||||
|
||||
`gradle assembleRelease`
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
`gradle build -x {{test}}`
|
||||
|
||||
- Run in offline mode to prevent gradle from accessing the network during builds:
|
||||
- Run in offline mode to prevent Gradle from accessing the network during builds:
|
||||
|
||||
`gradle build --offline`
|
||||
|
||||
|
@ -19,7 +19,7 @@
|
|||
|
||||
`gradle clean`
|
||||
|
||||
- Compile and Release package:
|
||||
- Build an Android Package (APK) in release mode:
|
||||
|
||||
`gradle assembleRelease`
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue