https://github.com/pyrossh/only_bible_app
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
https://github.com/pyrossh/only_bible_app
bible jetpack-compose kotlin
Last synced: 7 months ago
JSON representation
The only bible app you will ever need. No ads. No in-app purchases. No distractions.
- Host: GitHub
- URL: https://github.com/pyrossh/only_bible_app
- Owner: pyrossh
- Created: 2022-08-29T15:40:14.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-03T10:40:28.000Z (12 months ago)
- Last Synced: 2025-03-18T18:21:34.537Z (7 months ago)
- Topics: bible, jetpack-compose, kotlin
- Language: Kotlin
- Homepage: https://pyrossh.dev/only-bible-app
- Size: 1.17 GB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Only Bible App
The only bible app you will ever need.
No ads, No in-app purchases, No distractions.
Offline First
Optimized reading
Online Audio Playback
## Setup
```agsl
brew install fastlane
```For emulators,
1. Turn on developer options
2. Disable HW overlays in those options## iOS
* Make sure you've added a Distribution certificate to the system keystore and download it and install it
* Make sure you create an App Store provisioning profile for this certificate and download it and install it
* Add you Apple Developer Team account in xCode and open ios/Runner.xcworkspace and under Runner Project,
* Runner Target, Signing Tab, Release Tab, select that provisioning profile and Team and Certificate.## TODO
1. Fix Long chapter name (Thessalonians) where menu button shrinks
2. Add locales in the resources/localeList or app definition## Development
This is a Kotlin Multiplatform project targeting Android, iOS.* `/composeApp` is for code that will be shared across your Compose Multiplatform applications.
It contains several subfolders:
- `commonMain` is for code that’s common for all targets.
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
`iosMain` would be the right folder for such calls.* `/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,
you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)…