From d4892546fb8d7d6a1b7fa01cdbfbf63ba2e4082c Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Sun, 2 Feb 2025 22:36:52 -0600 Subject: [PATCH] Xcode build stuff --- ios/Jellify.xcodeproj/project.pbxproj | 4 ++-- ios/Jellify/Info.plist | 2 +- ios/JellifyTests/Info.plist | 2 +- ios/fastlane/Matchfile | 13 +++++++++++ ios/fastlane/README.md | 32 +++++++++++++++++++++++++++ 5 files changed, 49 insertions(+), 4 deletions(-) create mode 100644 ios/fastlane/Matchfile create mode 100644 ios/fastlane/README.md diff --git a/ios/Jellify.xcodeproj/project.pbxproj b/ios/Jellify.xcodeproj/project.pbxproj index cf75d96c..d0e90bcc 100644 --- a/ios/Jellify.xcodeproj/project.pbxproj +++ b/ios/Jellify.xcodeproj/project.pbxproj @@ -602,7 +602,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Jellify/Jellify.entitlements; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_TEAM = WAH9CZ8BPG; ENABLE_BITCODE = NO; INFOPLIST_FILE = Jellify/Info.plist; @@ -635,7 +635,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_ENTITLEMENTS = Jellify/Jellify.entitlements; - CURRENT_PROJECT_VERSION = 2; + CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_TEAM = WAH9CZ8BPG; INFOPLIST_FILE = Jellify/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.music"; diff --git a/ios/Jellify/Info.plist b/ios/Jellify/Info.plist index 575d285a..7fe2bbef 100644 --- a/ios/Jellify/Info.plist +++ b/ios/Jellify/Info.plist @@ -21,7 +21,7 @@ CFBundleSignature ???? CFBundleVersion - 2 + 3 ITSAppUsesNonExemptEncryption LSRequiresIPhoneOS diff --git a/ios/JellifyTests/Info.plist b/ios/JellifyTests/Info.plist index ccbdd7ca..ba7f37c6 100644 --- a/ios/JellifyTests/Info.plist +++ b/ios/JellifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 2 + 3 diff --git a/ios/fastlane/Matchfile b/ios/fastlane/Matchfile new file mode 100644 index 00000000..0fbc610b --- /dev/null +++ b/ios/fastlane/Matchfile @@ -0,0 +1,13 @@ +git_url("https://github.com/anultravioletaurora/jellify-signing.git") + +storage_mode("git") + +type("development") # The default type, can be: appstore, adhoc, enterprise or development + +# app_identifier(["tools.fastlane.app", "tools.fastlane.app2"]) +# username("user@fastlane.tools") # Your Apple Developer Portal username + +# For all available options run `fastlane match --help` +# Remove the # in the beginning of the line to enable the other options + +# The docs are available on https://docs.fastlane.tools/actions/match diff --git a/ios/fastlane/README.md b/ios/fastlane/README.md new file mode 100644 index 00000000..891747df --- /dev/null +++ b/ios/fastlane/README.md @@ -0,0 +1,32 @@ +fastlane documentation +---- + +# Installation + +Make sure you have the latest version of the Xcode command line tools installed: + +```sh +xcode-select --install +``` + +For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) + +# Available Actions + +## iOS + +### ios beta + +```sh +[bundle exec] fastlane ios beta +``` + +Push a new beta build to TestFlight + +---- + +This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. + +More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). + +The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).