Skip to content

Commit

Permalink
updated to use the RevenueCatUIDev scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
aboedo committed Aug 14, 2024
1 parent 4456281 commit 3f4c171
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -537,12 +537,13 @@ platform :ios do
end

lane :export_xcframeworks do |options|
create_and_sign_xcframework(scheme: 'RevenueCat')
create_and_sign_xcframework(scheme: 'RevenueCatUI')
create_and_sign_xcframework(scheme: 'RevenueCat', product_name: 'RevenueCat')
create_and_sign_xcframework(scheme: 'RevenueCatUIDev', product_name: 'RevenueCatUI')
end

private_lane :create_and_sign_xcframework do |options|
scheme = options[:scheme]
product_name = options[:product_name]

output_directory = 'build/xcframeworks'
platforms = [
Expand All @@ -557,7 +558,7 @@ platform :ios do
create_xcframework(
destinations: platforms,
scheme: scheme,
product_name: scheme,
product_name: product_name,
xcframework_output_directory: output_directory,
# Bitcode is no longer required since Xcode 14.
enable_bitcode: false,
Expand Down

0 comments on commit 3f4c171

Please sign in to comment.