~repos /only-bible-app

#kotlin#android#ios

GIT_CONFIG_PARAMETERS="'http.version=HTTP/1.1'" git clone https://git.pyrossh.dev/only-bible-app.git
Discussions: https://groups.google.com/g/rust-embed-devs

The only bible app you will ever need. No ads. No in-app purchases. No distractions.



bible.fbs



table Reference {
book:int;
chapter:int;
verse:int;
}
table Verse {
index:int;
book:int;
chapter:int;
heading:string;
heading_references:[Reference];
text:string;
}
table Chapter {
index:int;
book:int;
verses:[Verse];
}
table Book {
index:int;
name:string;
chapters:[Chapter];
}
table Bible {
name:string;
language_code:string;
language_english:string;
language_native:string;
voice_name:string;
old_testament_title:string;
new_testament_title:string;
bible_select_title:string;
theme_title:string;
bold_font_title:string;
eng_titles:string;
settings_title:string;
books:[Book];
}
root_type Bible;