Praxis

Android and iOS app for Christian daily prayers, reading, and fasting

Praxis

Orthodox daily prayers, readings, and fasting information

Latest Version Latest Version

Buy Me a Coffee at ko-fi.com

Description

This is a universal mobile app (Android and iOS) for Orthodox Christians to quickly have access to their daily prayers, scripture readings, and fasting calendar. This is an Expo project created with create-expo-app.

The source material for daily readings, fasting, and commemorations comes from the excellent orthocal.info website.

Download

| Source | |——–| | IzzyOnDroid | | GitHub Downloads |

Screenshots

Current features

  • Orthodox daily prayers and prayers before confession
  • Orthodox daily readings, life of the saints, and fasting calendar
  • Languages:
    • English
    • Portuguese
  • Calendars:
    • Gregorian
    • Julian

Planned features

  • Psalter
  • Bible according to the Septuagint
  • More prayers!

How to collaborate

Testing and development

  1. Clone git repo

  2. Install dependencies

    npm install
    
  3. Start the app

     npx expo start
    

In the output, you’ll find options to open the app in a

You can start developing by editing the files inside the app directory. This project uses file-based routing.

Build

  1. Build an Android App Bundle using EAS
npm install -g eas-cli
eas login
eas build:configure
eas build --platform android
  1. Create a list of apks from the bundle using Android bundletool, then unzip the apks file and enter the ‘splits’ directory
java -jar bundletool-all-1.17.2.jar build-apks --bundle=Praxis_v0.3.1.aab --output=Praxis_v0.3.1.apks
unzip Praxis_v0.3.1.apks
cd splits
  1. Make a new directory and move your chosen apks to the new directory. Then, use APKEditor to merge these apks into a single apk.
mkdir selected-apks
mv example.apk example2.apk selected-apks/
java -jar APKEditor.jar m -i selected-apks/
  1. Sign the apk with Android apksigner and verify the signature
apksigner sign --ks /path/to/keystore.jks merged.apk
apksigner verify -v merged.apk

Learn more

To learn more about developing your project with Expo, look at the following resources:

Join the Expo community

Join our community of developers creating universal apps.

References