Skip to content

Commit 87a8b1a

Browse files
committed
Configurando xcodegen.
1 parent e45920c commit 87a8b1a

File tree

10 files changed

+91
-965
lines changed

10 files changed

+91
-965
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,7 @@ fastlane/report.xml
6969
fastlane/Preview.html
7070
fastlane/screenshots
7171
fastlane/test_output
72+
73+
### Projects ###
74+
solutions/devsprint-caio-santos-7/*.xcodeproj
75+
solutions/devsprint-caio-santos-7/*.xcworkspace

solutions/devsprint-caio-santos-7/FinanceApp.xcodeproj/project.pbxproj

Lines changed: 0 additions & 823 deletions
This file was deleted.

solutions/devsprint-caio-santos-7/FinanceApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 7 deletions
This file was deleted.

solutions/devsprint-caio-santos-7/FinanceApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

solutions/devsprint-caio-santos-7/FinanceApp.xcodeproj/xcshareddata/xcschemes/FinanceApp.xcscheme

Lines changed: 0 additions & 109 deletions
This file was deleted.

solutions/devsprint-caio-santos-7/FinanceApp.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 10 deletions
This file was deleted.

solutions/devsprint-caio-santos-7/FinanceApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

Lines changed: 0 additions & 8 deletions
This file was deleted.

solutions/devsprint-caio-santos-7/FinanceApp/Resources/Info.plist

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>APPL</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
<key>NSAppTransportSecurity</key>
22+
<true/>
523
<key>UIApplicationSceneManifest</key>
624
<dict>
725
<key>UIApplicationSupportsMultipleScenes</key>
@@ -19,5 +37,9 @@
1937
</array>
2038
</dict>
2139
</dict>
40+
<key>UILaunchStoryboardName</key>
41+
<string>LaunchScreen</string>
42+
<key>UISupportedInterfaceOrientations</key>
43+
<array/>
2244
</dict>
2345
</plist>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>BNDL</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
</dict>
22+
</plist>
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: FinanceApp
2+
options:
3+
bundleIdPrefix: com.devpass
4+
deploymentTarget:
5+
iOS: 15.0
6+
postGenCommand: pod install
7+
8+
targets:
9+
FinanceApp:
10+
type: application
11+
platform: iOS
12+
sources:
13+
- FinanceApp
14+
scheme:
15+
testTargets:
16+
- FinanceAppTests
17+
18+
info:
19+
path: FinanceApp/Resources/Info.plist
20+
properties:
21+
UISupportedInterfaceOrientations: []
22+
NSAppTransportSecurity: true
23+
UILaunchStoryboardName: LaunchScreen
24+
UIApplicationSceneManifest:
25+
UIApplicationSupportsMultipleScenes: false
26+
UISceneConfigurations:
27+
UIWindowSceneSessionRoleApplication:
28+
- UISceneConfigurationName: Default Configuration
29+
UISceneDelegateClassName: $(PRODUCT_MODULE_NAME).SceneDelegate
30+
31+
FinanceAppTests:
32+
type: bundle.unit-test
33+
platform: iOS
34+
sources:
35+
- path: FinanceAppTests
36+
includes:
37+
- "**/*.swift"
38+
39+
settings:
40+
TEST_HOST: "$(BUILT_PRODUCTS_DIR)/FinanceApp.app/FinanceApp"
41+
42+
info:
43+
path: FinanceAppTests/Info.plist

0 commit comments

Comments
 (0)