Created
November 30, 2020 06:21
-
-
Save pilgwon/9ea4ee494f041a9b84661f691b775506 to your computer and use it in GitHub Desktop.
XcodeGen project.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PROJECT_NAME | |
options: | |
minimumXcodeGenVersion: 2.18.0 | |
createIntermediateGroups: true | |
developmentLanguage: en | |
usesTabs: true | |
indentWidth: 4 | |
tabWidth: 4 | |
xcodeVersion: 12.0 | |
deploymentTarget: | |
iOS: "13.0" | |
defaultConfig: Release | |
groupSortPosition: top | |
groupOrdering: | |
- order: [Generated, Resources, Sources] | |
postGenCommand: pod install | |
configs: | |
Release: release | |
Debug: debug | |
packages: | |
Geppetto: | |
url: [email protected]:geppetto-ios/Geppetto.git | |
from: 0.2.3 | |
SnapKit: | |
url: [email protected]:SnapKit/SnapKit.git | |
from: 5.0.1 | |
Toast: | |
url: [email protected]:scalessec/Toast-Swift.git | |
from: 5.0.1 | |
JGProgressHUD: | |
url: [email protected]:JonasGessner/JGProgressHUD.git | |
from: 2.2.0 | |
targets: | |
PROJECT_NAME: | |
type: application | |
platform: iOS | |
sources: | |
- path: PROJECT_NAME/Sources | |
- path: PROJECT_NAME/Resources | |
- path: PROJECT_NAME/Generated | |
configFiles: | |
- Release: Release.xcconfig | |
- Debug: Debug.xcconfig | |
attributes: | |
ProvisioningStyle: Manual | |
postBuildScripts: | |
- name: SwiftGen | |
script: | | |
(cd $PROJECT_DIR/Scripts && ./swiftgen.sh) | |
- name: SwiftLint | |
script: swiftlint | |
settings: | |
base: | |
INFOPLIST_FILE: PROJECT_NAME/Resources/Info.plist | |
PRODUCT_BUNDLE_IDENTIFIER: APP_BUNDLE_IDENTIFIER | |
PRODUCT_DISPLAY_NAME: APP_DISPLAY_NAME | |
DEVELOPMENT_TEAM: DEVELOPMENT_TEAM | |
CODE_SIGN_STYLE: Manual | |
configs: | |
Release: | |
CODE_SIGN_IDENTITY: iPhone Distribution | |
PROVISIONING_PROFILE_SPECIFIER: match AppStore APP_BUNDLE_IDENTIFIER | |
Debug: | |
CODE_SIGN_IDENTITY: iPhone Developer | |
PROVISIONING_PROFILE_SPECIFIER: match Development APP_BUNDLE_IDENTIFIER | |
dependencies: | |
- package: Geppetto | |
- package: SnapKit | |
- package: Toast | |
- package: JGProgressHUD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment