Updated on 2026-08-14

This commit is contained in:
Tangem 2025-01-09 16:01:42 +02:00
parent a9d6b3cea5
commit 5f6e5e328f

View file

@ -50,7 +50,14 @@ platform :android do
desc "Build external and release APKs"
lane :build do |options|
gradle(task: 'clean')
gradle(task: 'clean') # TODO: remove after fully moving from old CI
launched_from_github_action = options[:launched_from_github_action] || false # TODO: remove after fully moving from old CI
if launched_from_github_action
FileUtils.cp("../ci_resources/build_ci_gradle.properties", "../gradle.properties")
puts File.read("../gradle.properties")
end
gradle(
task: "bundle",
build_type: "Release",