This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @file:Suppress("DEPRECATION") | |
| package org.ies.tierno.applicationamani.presentation.ui.screen.psicologoView | |
| import android.os.Build | |
| import androidx.annotation.RequiresApi | |
| import androidx.compose.animation.* | |
| import androidx.compose.foundation.background | |
| import androidx.compose.foundation.border | |
| import androidx.compose.foundation.clickable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Script para construir el paquete .deb de la aplicación JavaFX | |
| set -e | |
| echo "=== Limpiando proyecto anterior ===" | |
| mvn clean | |
| echo "=== Compilando el proyecto ===" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================================= | |
| # build-windows.ps1 | |
| # Genera un ejecutable de Windows (.exe) para la aplicación JavaFX | |
| # Uso: .\build-windows.ps1 | |
| # ============================================================= | |
| $JAVA_HOME = "C:\Program Files\Java\jdk-21" | |
| $JPACKAGE = "$JAVA_HOME\bin\jpackage.exe" | |
| $PROJECT = $PSScriptRoot | |
| $TARGET = "$PROJECT\target" |