Reminder application developed with Expo, SQLite, and notifications.
Intervals frecuency
Specific days
Configuration
- Install dependencies:
npm install
- Start the project in development mode:
npm start
- Scan the QR code with Expo Go on your mobile device to test the app.
- Install the EAS CLI (Expo Application Services):
npm install -g eas-cli
- Log in to your Expo account:
eas login
- Initialize EAS in your project:
eas init
- Build the APK in development mode:
eas build --profile development --platform android
Make sure to add your EAS projectId in the extra section of your app.config.js file:
extra: {
router: {},
eas: {
projectId: "YOUR_EAS_PROJECT_ID",
},
},To view native logs on Android:
- Install ADB following the official guide or this YouTube tutorial.
- Connect your device and verify it is recognized:
adb devices
- Filter relevant logs from the app:
adb logcat | Select-String "NATIVE_LOG"
- Remember to replace
"YOUR_EAS_PROJECT_ID"with your actual EAS project ID. - If you encounter build issues, check the native logs for more information.
- Mode specific days
Aplicación de recordatorios desarrollada con Expo, SQLite y notificaciones.
Intervals frecuency
Specific days
Configuration
- Instala las dependencias:
npm install
- Inicia el proyecto en modo desarrollo:
npm start
- Escanea el código QR con Expo Go en tu dispositivo móvil para probar la app.
- Instala la CLI de EAS (Expo Application Services):
npm install -g eas-cli
- Inicia sesión en tu cuenta de Expo:
eas login
- Inicializa EAS en tu proyecto:
eas init
- Construye el APK en modo desarrollo:
eas build --profile development --platform android
Asegúrate de agregar tu projectId de EAS en la sección extra de tu archivo app.config.js:
extra: {
router: {},
eas: {
projectId: "TU_PROJECT_ID_EAS",
},
},Para ver logs nativos en Android:
- Instala ADB siguiendo la guía oficial o este tutorial en YouTube.
- Conecta tu dispositivo y verifica que esté reconocido:
adb devices
- Filtra revelentes logs in app apk:
adb logcat | Select-String "NATIVE_LOG"
- Recuerda remplazar
"YOUR_EAS_PROJECT_ID"con tu actual EAS project ID. - Si encuentras problemas al compilar, revisa los registros nativos para obtener más información.
- Modo specific days











