Skip to content

Commit

Permalink
push git
Browse files Browse the repository at this point in the history
  • Loading branch information
rinkyn05 committed Dec 2, 2024
1 parent e0f2bf3 commit 48a5da0
Show file tree
Hide file tree
Showing 21 changed files with 1,860 additions and 3,140 deletions.
46 changes: 29 additions & 17 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ if (localPropertiesFile.exists()) {

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
flutterVersionCode = '2'
}

def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
flutterVersionName = '1.0.1'
}

android {
Expand Down Expand Up @@ -48,27 +48,39 @@ android {
versionName flutterVersionName
}

// Definir las propiedades del keystore
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file("key.properties")
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

// Configurar la firma para el modo release
// No necesitas la configuración del keystore local si usas Play App Signing
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
// No se necesita esta sección si solo vas a usar Play App Signing
}

buildTypes {
release {
signingConfig signingConfigs.release
// Google Play maneja la firma automáticamente
signingConfig null // No es necesario usar una firma local, ya que se usa la de Google Play
}
}

// Definir las propiedades del keystore
// def keystoreProperties = new Properties()
// def keystorePropertiesFile = rootProject.file("key.properties")
// if (keystorePropertiesFile.exists()) {
// keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
// }

// // Configurar la firma para el modo release
// signingConfigs {
// release {
// keyAlias keystoreProperties['keyAlias']
// keyPassword keystoreProperties['keyPassword']
// storeFile file(keystoreProperties['storeFile'])
// storePassword keystoreProperties['storePassword']
// }
// }
// buildTypes {
// release {
// signingConfig signingConfigs.release
// }
// }
}

flutter {
Expand Down
9 changes: 9 additions & 0 deletions android/app/google-services.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"project_info": {
"project_number": "334278581961",
"firebase_url": "https://gabriel-coach-c7e30-default-rtdb.firebaseio.com",
"project_id": "gabriel-coach-c7e30",
"storage_bucket": "gabriel-coach-c7e30.appspot.com"
},
Expand All @@ -13,6 +14,14 @@
}
},
"oauth_client": [
{
"client_id": "334278581961-80cplf2n50kias5p0hvl5bbr5a5sgapq.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.gabrielcoach.app",
"certificate_hash": "a634c3473ad20b0a38a126152f918a9a9c9ef806"
}
},
{
"client_id": "334278581961-hovn5qqv584210bfq7hcu0ce69h6r3p1.apps.googleusercontent.com",
"client_type": 1,
Expand Down
4 changes: 3 additions & 1 deletion assets/lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -827,5 +827,7 @@
"selectDescansoEntreSeriesTime": "Select rest time between sets",
"metodoEntrenamiento": "Training Method",
"cardioHiit": "Cardio/Hiit",
"selectCardioHiitTime": "Select Cardio/Hiit time"
"selectCardioHiitTime": "Select Cardio/Hiit time",
"filterTitle": "Search Filters",
"filter": "Filter"
}
4 changes: 3 additions & 1 deletion assets/lang/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -836,5 +836,7 @@
"selectDescansoEntreSeriesTime": "Seleccionar tiempo de descanso entre series",
"metodoEntrenamiento": "Metodo de Entrenamiento",
"cardioHiit": "Cardio/Hiit",
"selectCardioHiitTime": "Selecciona el tiempo para Cardio/Hiit"
"selectCardioHiitTime": "Selecciona el tiempo para Cardio/Hiit",
"filterTitle": "Filtros de Busqueda",
"filter": "Filtrar"
}
198 changes: 0 additions & 198 deletions lib/backend/calentamiento_fisico/add_calentameinto_f_screen copy.dart

This file was deleted.

Loading

0 comments on commit 48a5da0

Please sign in to comment.