Praxis
Android and iOS app for Christian daily prayers, reading, and fasting
Praxis
Orthodox daily prayers, readings, and fasting information
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
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
-
Clone git repo
-
Install dependencies
npm install
-
Start the app
npx expo start
In the output, you’ll find options to open the app in a
- development build
- Android emulator
- iOS simulator
- Expo Go, a limited sandbox for trying out app development with Expo
You can start developing by editing the files inside the app directory. This project uses file-based routing.
Build
- Build an Android App Bundle using EAS
npm install -g eas-cli
eas login
eas build:configure
eas build --platform android
- 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
- 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/
- 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:
- Expo documentation: Learn fundamentals, or go into advanced topics with our guides.
- Learn Expo tutorial: Follow a step-by-step tutorial where you’ll create a project that runs on Android, iOS, and the web.
Join the Expo community
Join our community of developers creating universal apps.
- Expo on GitHub: View our open source platform and contribute.
- Discord community: Chat with Expo users and ask questions.