"Fossies" - the Fresh Open Source Software Archive 
Member "jitsi-meet-7307/twa/fastlane/Fastfile" (30 May 2023, 749 Bytes) of package /linux/misc/jitsi-meet-7307.tar.gz:
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ENV["FASTLANE_SKIP_UPDATE_CHECK"] = "1"
2 opt_out_usage
3
4 default_platform(:android)
5
6 platform :android do
7 desc "Make a new build"
8 lane :build do
9 # Cleanup
10 gradle(task: "clean")
11
12 # Build and sign the app
13 gradle(
14 task: "assemble",
15 build_type: "Release",
16 print_command: false,
17 properties: {
18 "android.injected.signing.store.file" => ENV["JITSI_KEYSTORE"],
19 "android.injected.signing.store.password" => ENV["JITSI_KEYSTORE_PASSWORD"],
20 "android.injected.signing.key.alias" => ENV["JITSI_KEY_ALIAS"],
21 "android.injected.signing.key.password" => ENV["JITSI_KEY_PASSWORD"],
22 }
23 )
24 end
25 end