An open API service indexing awesome lists of open source software.

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.

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)…