~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.



ios/fastlane/Fastfile



# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Get App Store Connect API key"
lane :api_key do
app_store_connect_api_key(
key_id: "4BG2YL89CJ",
issuer_id: "abc54778-7886-4294-8e5c-ef9f7bb0827d",
key_filepath: "./AuthKey_4BG2YL89CJ.p8",
duration: 1200,
in_house: false
)
end
desc "Push a new release build to the App Store"
lane :release do
increment_build_number(xcodeproj: "Runner.xcodeproj")
build_app(workspace: "Runner.xcworkspace", scheme: "Runner")
api_key = api_key()
upload_to_app_store(api_key: api_key)
end
desc "Upload a pre-built IPA to the App Store"
lane :upload do
api_key = api_key()
deliver(
api_key: api_key,
ipa: "../build/ios/ipa/only-bible-app.ipa",
automatic_release: true,
submit_for_review: true,
precheck_include_in_app_purchases: false,
)
end
end