Initial commit

This commit is contained in:
Tha_14
2024-02-22 21:43:11 +02:00
commit 1b96a031d2
1108 changed files with 157706 additions and 0 deletions

24
fastlane/Fastfile Normal file
View File

@ -0,0 +1,24 @@
default_platform :ios
platform :ios do
before_all do
end
desc "Release app to the App Store"
lane :release do
appstore(
force: false,
skip_binary_upload: true,
skip_screenshots: true,
submit_for_review: true,
automatic_release: true
)
end
after_all do |lane|
end
error do |lane, exception|
end
end