~repos /only-bible-app
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.
android/build.gradle.kts
allprojects { repositories { google() mavenCentral() }}
val newBuildDir: Directory = rootProject.layout.buildDirectory .dir("../../build") .get()rootProject.layout.buildDirectory.value(newBuildDir)
subprojects { val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) project.layout.buildDirectory.value(newSubprojectBuildDir)}subprojects { project.evaluationDependsOn(":app")}
tasks.register<Delete>("clean") { delete(rootProject.layout.buildDirectory)}