Skip to content

Commit f2f8c74

Browse files
authored
Merge pull request #8 from GoodRequest/fix/migrationCompatibility
fix: migration compatibility
2 parents 3a5e084 + a471c89 commit f2f8c74

File tree

27 files changed

+1660
-170
lines changed

27 files changed

+1660
-170
lines changed

.gitignore

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,112 @@ DerivedData/
77
.swiftpm/config/registries.json
88
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
99
.netrc
10+
11+
12+
#####
13+
# OS X temporary files that should never be committed
14+
.DS_Store
15+
*.swp
16+
# *.lock
17+
*.profraw
18+
19+
#####
20+
# DotEnv files
21+
.env
22+
23+
####
24+
# Xcode temporary files that should never be committed
25+
*~.nib
26+
27+
####
28+
# Objective-C/Swift specific
29+
*.hmap
30+
*.ipa
31+
32+
####
33+
# Xcode build files
34+
DerivedData/
35+
build/
36+
Builds/
37+
38+
#####
39+
# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups)
40+
*.pbxuser
41+
*.mode1v3
42+
*.mode2v3
43+
*.perspectivev3
44+
!default.pbxuser
45+
!default.mode1v3
46+
!default.mode2v3
47+
!default.perspectivev3
48+
49+
####
50+
# Xcode 4
51+
xcuserdata
52+
!xcschemes
53+
# Xcode 4
54+
*.moved-aside
55+
56+
####
57+
# XCode 4 workspaces - more detailed
58+
!xcshareddata
59+
!default.xcworkspace
60+
*.xcworkspacedata
61+
62+
63+
####
64+
# Xcode 5
65+
*.xccheckout
66+
*.xcuserstate
67+
68+
####
69+
# Xcode 7
70+
*.xcscmblueprint
71+
72+
####
73+
# Other Xcode files
74+
*.hmap
75+
*.ipa
76+
77+
####
78+
# Licences
79+
*mono0926*
80+
81+
####
82+
# Google Service plist file changes after every build
83+
*GoogleService-Info.plist
84+
85+
####
86+
# CocoaPods
87+
Pods/
88+
# !Podfile
89+
# !Podfile.lock
90+
91+
####
92+
# Fastlane
93+
# Temporary profiling data
94+
/fastlane/report.xml
95+
# Deliver temporary error output
96+
/fastlane/Error*.png
97+
# Deliver temporary preview output
98+
/fastlane/Preview.html
99+
# Snapshot generated screenshots
100+
/fastlane/screenshots/*/*-portrait.png
101+
/fastlane/screenshots/*/*-landscape.png
102+
/fastlane/screenshots/screenshots.html
103+
# Frameit generated screenshots
104+
/fastlane/screenshots/*/*-portrait_framed.png
105+
/fastlane/screenshots/*/*-landscape_framed.png
106+
107+
####
108+
# rbenv
109+
.rbenv-vars
110+
default.profraw
111+
.ruby-version
112+
113+
# P8 Keys
114+
goodrequest.json
115+
*.p8
116+
117+
# Custom Scripts
118+
logen2_token.json
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1530"
4+
version = "1.7">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES"
8+
buildArchitectures = "Automatic">
9+
<BuildActionEntries>
10+
<BuildActionEntry
11+
buildForTesting = "YES"
12+
buildForRunning = "YES"
13+
buildForProfiling = "YES"
14+
buildForArchiving = "YES"
15+
buildForAnalyzing = "YES">
16+
<BuildableReference
17+
BuildableIdentifier = "primary"
18+
BlueprintIdentifier = "GoodPersistence"
19+
BuildableName = "GoodPersistence"
20+
BlueprintName = "GoodPersistence"
21+
ReferencedContainer = "container:">
22+
</BuildableReference>
23+
</BuildActionEntry>
24+
</BuildActionEntries>
25+
</BuildAction>
26+
<TestAction
27+
buildConfiguration = "Debug"
28+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
29+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
30+
shouldUseLaunchSchemeArgsEnv = "YES"
31+
shouldAutocreateTestPlan = "YES">
32+
<Testables>
33+
<TestableReference
34+
skipped = "NO">
35+
<BuildableReference
36+
BuildableIdentifier = "primary"
37+
BlueprintIdentifier = "GoodPersistenceTests"
38+
BuildableName = "GoodPersistenceTests"
39+
BlueprintName = "GoodPersistenceTests"
40+
ReferencedContainer = "container:">
41+
</BuildableReference>
42+
</TestableReference>
43+
</Testables>
44+
</TestAction>
45+
<LaunchAction
46+
buildConfiguration = "Debug"
47+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
48+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
49+
launchStyle = "0"
50+
useCustomWorkingDirectory = "NO"
51+
ignoresPersistentStateOnLaunch = "NO"
52+
debugDocumentVersioning = "YES"
53+
debugServiceExtension = "internal"
54+
allowLocationSimulation = "YES">
55+
</LaunchAction>
56+
<ProfileAction
57+
buildConfiguration = "Release"
58+
shouldUseLaunchSchemeArgsEnv = "YES"
59+
savedToolIdentifier = ""
60+
useCustomWorkingDirectory = "NO"
61+
debugDocumentVersioning = "YES">
62+
<MacroExpansion>
63+
<BuildableReference
64+
BuildableIdentifier = "primary"
65+
BlueprintIdentifier = "GoodPersistence"
66+
BuildableName = "GoodPersistence"
67+
BlueprintName = "GoodPersistence"
68+
ReferencedContainer = "container:">
69+
</BuildableReference>
70+
</MacroExpansion>
71+
</ProfileAction>
72+
<AnalyzeAction
73+
buildConfiguration = "Debug">
74+
</AnalyzeAction>
75+
<ArchiveAction
76+
buildConfiguration = "Release"
77+
revealArchiveInOrganizer = "YES">
78+
</ArchiveAction>
79+
</Scheme>

0 commit comments

Comments
 (0)