-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #76 from gustavoerivero/dev
Final Version
- Loading branch information
Showing
175 changed files
with
15,570 additions
and
519 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "automatic" | ||
"java.configuration.updateBuildConfiguration": "automatic", | ||
"files.associations": { | ||
"ostream": "cpp" | ||
}, | ||
"java.compile.nullAnalysis.mode": "automatic" | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
|
||
<h1 align="center"> | ||
<img src="./public/assets/eden.svg" alt="Eden" width="400" height="150" /> | ||
</h1> | ||
|
||
![dependencies](https://img.shields.io/depfu/dependencies/github/gustavoerivero/EdenMobile) | ||
![nodeV](https://img.shields.io/node/v/react-native) | ||
![size](https://img.shields.io/github/repo-size/gustavoerivero/EdenMobile) | ||
![version](https://img.shields.io/github/package-json/v/gustavoerivero/EdenMobile) | ||
![license](https://img.shields.io/github/license/gustavoerivero/EdenMobile) | ||
![collabs](https://img.shields.io/github/contributors/gustavoerivero/EdenMobile) | ||
![lastcommit](https://img.shields.io/github/last-commit/gustavoerivero/EdenMobile) | ||
![languages](https://img.shields.io/github/languages/count/gustavoerivero/EdenMobile) | ||
![porc](https://img.shields.io/github/languages/top/gustavoerivero/EdenMobile) | ||
|
||
<div align="center"> | ||
<table> | ||
<tr> | ||
<!-- Do not translate this table --> | ||
<td><a href="./README.md"> English </a></td> | ||
<td><a href="./README-ES.md"> Spanish </a></td> | ||
</tr> | ||
</table> | ||
</div> | ||
|
||
|
||
"Edén: Servicio de juegos" es un sistema de información estructurado por tres componentes, | ||
incluyendo un CRM, un portal informativo y una aplicación móvil. Eden es un | ||
sistema de gestión logística y de información para la administración de | ||
clubes sociales y deportivos, que apoya especialmente las disciplinas deportivas de "bolas | ||
criollas" y dominó. | ||
|
||
Este repositorio corresponde al componente de la aplicación móvil, que está | ||
especialmente enfocado a la visualización de datos del club, notificaciones, perfiles de | ||
usuarios y/o perfiles de los jugadores y, si se dan los permisos correspondientes | ||
la gestión de los partidos deportivos. | ||
|
||
## Comenzando 🚀 | ||
|
||
La aplicación está desarrollada con React Native para el frontend y PHP con Laravel para el | ||
backend y también hace uso de otras librerías que son necesarias para el correcto funcionamiento | ||
de la aplicación. | ||
|
||
### Prerrequisitos 📋 | ||
|
||
* [Node.js](https://nodejs.org/en/) versión 18.12.1 | ||
|
||
* [Postman](https://www.postman.com/) para las peticiones HTTP. | ||
|
||
* Para el proyecto se utilizó [Visual Studio Code](https://code.visualstudio.com/) como editor de texto tanto para el frontend como para el backend, pero también se puede utilizar cualquier editor de texto. | ||
|
||
### Instalación 🔧 | ||
|
||
Para comenzar, se procede a la descarga del repositorio. Para ello, se abre la consola, | ||
ir a la carpeta donde se desea guardar el proyecto y ejecutar el siguiente comando: | ||
|
||
```bash | ||
git clone https://github.com/gustavoerivero/EdenMobile.git | ||
``` | ||
|
||
A continuación, se debe acceder a la carpeta clonada en el repositorio "EdenMobile". | ||
|
||
Para un sistema operativo Windows, con el comando: | ||
|
||
```bash | ||
cd EdenMobile | ||
``` | ||
|
||
A continuación, se procede a la instalación de las librerías y dependencias necesarias para su ejecución. | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
O, como alternativa; | ||
|
||
```bash | ||
yarn install | ||
``` | ||
|
||
Si ninguna de las opciones anteriores funciona, intentar con; | ||
|
||
```bash | ||
npm i -f | ||
``` | ||
|
||
Una vez que la instalación de las dependencias es exitosa, el proyecto está listo para desplegar. | ||
|
||
## Despliegue 📦 | ||
|
||
Para realizar un despliegue local, se procede ejecutando los siguientes comandos: | ||
|
||
### Primer paso: Iniciar Metro | ||
|
||
En primer lugar, es necesario iniciar Metro, el bundler de JavaScript que viene con React Native. | ||
|
||
Para iniciar Metro, hay que ejecutar ```npx react-native start``` o, ```yarn react-native start``` | ||
dentro de la carpeta del proyecto Eden: | ||
|
||
```bash | ||
npx react-native start | ||
``` | ||
|
||
o | ||
|
||
```bash | ||
yarn react-native start | ||
``` | ||
|
||
Esto permitirá iniciar el Metro Bundler. | ||
|
||
### Segundo paso: Iniciar el proyecto | ||
|
||
Dejar que Metro Bundler se ejecute en el terminal. Ahora bien, abrir un nuevo terminal dentro del proyecto Eden . Consecuentemente, se debe ejecutar lo siguiente: | ||
|
||
```bash | ||
npx react-native run-android | ||
``` | ||
|
||
o | ||
|
||
```bash | ||
yarn react-native run-android | ||
``` | ||
|
||
Si todo está configurado correctamente, se debería ver la aplicación funcionando en | ||
un emulador de Android en breve. | ||
|
||
```npx react-native run-android``` o ```yarn react-native run-android```, son formas de ejecutar la aplicación, pero también se puede ejecutar directamente desde Android Studio. | ||
|
||
Para más información, es posible acceder directamente a la [documentación de React Native](https://reactnative.dev/docs/environment-setup). | ||
|
||
## Documentación 📕 | ||
|
||
Para conocer la documentación utilizada para el desarrollo de la aplicación, es posible visitar la [documentación](https://drive.google.com/drive/folders/1mAbI0DoGZUTUPalTCa9e0e3yG1RdAi9N). | ||
|
||
## Autores 💻 | ||
|
||
El proyecto ha sido concebido, diseñado y desarrollado por estudiantes del último semestre de Ingeniería Informática de la Universidad Centroccidental "Lisandro Alvarado" de la LXIII promoción agrupados bajo el nombre de "Eurus". | ||
|
||
### Thoteam ✒️ | ||
Sin embargo, para el desarrollo de la aplicación móvil, el desarrollo fue | ||
llevado a cabo por el subgrupo Thoteam, formado por; | ||
|
||
* @gustavoerivero - [gustavoerivero](https://github.com/gustavoerivero) | ||
* @joseriveroc - [joseriveroc](https://github.com/joseriveroc) | ||
* @luisv98 - [luisv98](https://github.com/luisv98) | ||
|
||
--- | ||
|
||
<p align="center"> | ||
<a href="http://www.ucla.edu.ve/"> | ||
<img src="./public/assets/ucla.png" alt="UCLA" width="45" height="50" /> | ||
</a> | ||
<a href="http://dcyt.ucla.edu.ve/"> | ||
<img src="./public/assets/dcyt.png" alt="DCYT" width="65" height="50" /> | ||
</a> | ||
<img src="./public/assets/eurus.png" alt="Eurus" width="100" height="50" /> | ||
<img src="./public/assets/thoteam.png" alt="Thoteam" width="175" height="50" /> | ||
</p> | ||
|
||
--- | ||
⌨️ hecho con ❤️ por [Thoteam] |
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<background android:drawable="@mipmap/ic_launcher_background"/> | ||
<foreground android:drawable="@mipmap/ic_launcher_foreground"/> | ||
<monochrome android:drawable="@mipmap/ic_launcher_monochrome"/> | ||
</adaptive-icon> |
6 changes: 6 additions & 0 deletions
6
android/app/src/debug/res/mipmap-anydpi-v26/ic_launcher_round.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<background android:drawable="@mipmap/ic_launcher_round_background"/> | ||
<foreground android:drawable="@mipmap/ic_launcher_round_foreground"/> | ||
<monochrome android:drawable="@mipmap/ic_launcher_round_monochrome"/> | ||
</adaptive-icon> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.04 KB
android/app/src/debug/res/mipmap-hdpi/ic_launcher_round_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.34 KB
android/app/src/debug/res/mipmap-hdpi/ic_launcher_round_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.34 KB
android/app/src/debug/res/mipmap-hdpi/ic_launcher_round_monochrome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.22 KB
android/app/src/debug/res/mipmap-mdpi/ic_launcher_round_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.3 KB
android/app/src/debug/res/mipmap-mdpi/ic_launcher_round_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.3 KB
android/app/src/debug/res/mipmap-mdpi/ic_launcher_round_monochrome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.07 KB
android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.4 KB
android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round_foreground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.4 KB
android/app/src/debug/res/mipmap-xhdpi/ic_launcher_round_monochrome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+6.57 KB
android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round_background.png
Oops, something went wrong.
Binary file added
BIN
+13.4 KB
android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round_foreground.png
Oops, something went wrong.
Binary file added
BIN
+13.4 KB
android/app/src/debug/res/mipmap-xxhdpi/ic_launcher_round_monochrome.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+9.57 KB
android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round_background.png
Oops, something went wrong.
Binary file added
BIN
+20.8 KB
android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round_foreground.png
Oops, something went wrong.
Binary file added
BIN
+20.8 KB
android/app/src/debug/res/mipmap-xxxhdpi/ic_launcher_round_monochrome.png
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="ic_launcher_background">#FFFFFF</color> | ||
</resources> |
11 changes: 11 additions & 0 deletions
11
android/app/src/main/java/com/edenmobile/MainActivity.java
This file contains 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
This file contains 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
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
android:background="#FFFFFF" | ||
android:gravity="center" | ||
android:orientation="vertical"> | ||
|
||
<FrameLayout | ||
android:layout_width="229.5dp" | ||
android:layout_height="399dp" | ||
android:background="@drawable/edenlogo"> | ||
|
||
</FrameLayout> | ||
</LinearLayout> |
Oops, something went wrong.
Binary file modified
BIN
+863 Bytes
(120%)
android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+633 Bytes
(120%)
android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+1.72 KB
(120%)
android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+3.42 KB
(130%)
android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+5.74 KB
(140%)
android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<color name="primary_dark">#FFFFFF</color> | ||
</resources> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<resources> | ||
<string name="app_name">EdenMobile</string> | ||
<string name="app_name">Eden</string> | ||
</resources> |
This file contains 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
Oops, something went wrong.