├── README.md ├── JustGo-Revenge ├── JustGo-Revenge │ ├── Assets.xcassets │ │ ├── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── JustGo_Revenge.xcdatamodeld │ │ ├── .xccurrentversion │ │ └── JustGo_Revenge.xcdatamodel │ │ │ └── contents │ ├── ViewController.swift │ ├── Info.plist │ ├── Base.lproj │ │ ├── Main.storyboard │ │ └── LaunchScreen.storyboard │ └── AppDelegate.swift ├── JustGo-Revenge.xcodeproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── project.pbxproj ├── JustGo-RevengeTests │ ├── Info.plist │ └── JustGo_RevengeTests.swift └── JustGo-RevengeUITests │ ├── Info.plist │ └── JustGo_RevengeUITests.swift └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # iOS_Revenge-Edition 2 | 스터디말고 제대로 다시한번 저스트고 3 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/JustGo_Revenge.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | JustGo_Revenge.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/JustGo_Revenge.xcdatamodeld/JustGo_Revenge.xcdatamodel/contents: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // JustGo-Revenge 4 | // 5 | // Created by 조우진 on 24/06/2019. 6 | // Copyright © 2019 조우진. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController { 12 | 13 | override func viewDidLoad() { 14 | super.viewDidLoad() 15 | // Do any additional setup after loading the view. 16 | } 17 | 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-RevengeTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-RevengeUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-RevengeTests/JustGo_RevengeTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // JustGo_RevengeTests.swift 3 | // JustGo-RevengeTests 4 | // 5 | // Created by 조우진 on 24/06/2019. 6 | // Copyright © 2019 조우진. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import JustGo_Revenge 11 | 12 | class JustGo_RevengeTests: XCTestCase { 13 | 14 | override func setUp() { 15 | // Put setup code here. This method is called before the invocation of each test method in the class. 16 | } 17 | 18 | override func tearDown() { 19 | // Put teardown code here. This method is called after the invocation of each test method in the class. 20 | } 21 | 22 | func testExample() { 23 | // This is an example of a functional test case. 24 | // Use XCTAssert and related functions to verify your tests produce the correct results. 25 | } 26 | 27 | func testPerformanceExample() { 28 | // This is an example of a performance test case. 29 | self.measure { 30 | // Put the code you want to measure the time of here. 31 | } 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-RevengeUITests/JustGo_RevengeUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // JustGo_RevengeUITests.swift 3 | // JustGo-RevengeUITests 4 | // 5 | // Created by 조우진 on 24/06/2019. 6 | // Copyright © 2019 조우진. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | 11 | class JustGo_RevengeUITests: XCTestCase { 12 | 13 | override func setUp() { 14 | // Put setup code here. This method is called before the invocation of each test method in the class. 15 | 16 | // In UI tests it is usually best to stop immediately when a failure occurs. 17 | continueAfterFailure = false 18 | 19 | // UI tests must launch the application that they test. Doing this in setup will make sure it happens for each test method. 20 | XCUIApplication().launch() 21 | 22 | // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. 23 | } 24 | 25 | override func tearDown() { 26 | // Put teardown code here. This method is called after the invocation of each test method in the class. 27 | } 28 | 29 | func testExample() { 30 | // Use recording to get started writing UI tests. 31 | // Use XCTAssert and related functions to verify your tests produce the correct results. 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UILaunchStoryboardName 24 | LaunchScreen 25 | UIMainStoryboardFile 26 | Main 27 | UIRequiredDeviceCapabilities 28 | 29 | armv7 30 | 31 | UISupportedInterfaceOrientations 32 | 33 | UIInterfaceOrientationPortrait 34 | UIInterfaceOrientationLandscapeLeft 35 | UIInterfaceOrientationLandscapeRight 36 | 37 | UISupportedInterfaceOrientations~ipad 38 | 39 | UIInterfaceOrientationPortrait 40 | UIInterfaceOrientationPortraitUpsideDown 41 | UIInterfaceOrientationLandscapeLeft 42 | UIInterfaceOrientationLandscapeRight 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.gitignore.io/api/macos,swift,xcode 3 | # Edit at https://www.gitignore.io/?templates=macos,swift,xcode 4 | 5 | ### macOS ### 6 | # General 7 | .DS_Store 8 | .AppleDouble 9 | .LSOverride 10 | 11 | # Icon must end with two \r 12 | Icon 13 | 14 | # Thumbnails 15 | ._* 16 | 17 | # Files that might appear in the root of a volume 18 | .DocumentRevisions-V100 19 | .fseventsd 20 | .Spotlight-V100 21 | .TemporaryItems 22 | .Trashes 23 | .VolumeIcon.icns 24 | .com.apple.timemachine.donotpresent 25 | 26 | # Directories potentially created on remote AFP share 27 | .AppleDB 28 | .AppleDesktop 29 | Network Trash Folder 30 | Temporary Items 31 | .apdisk 32 | 33 | ### Swift ### 34 | # Xcode 35 | # 36 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 37 | 38 | ## Build generated 39 | build/ 40 | DerivedData/ 41 | 42 | ## Various settings 43 | *.pbxuser 44 | !default.pbxuser 45 | *.mode1v3 46 | !default.mode1v3 47 | *.mode2v3 48 | !default.mode2v3 49 | *.perspectivev3 50 | !default.perspectivev3 51 | xcuserdata/ 52 | 53 | ## Other 54 | *.moved-aside 55 | *.xccheckout 56 | *.xcscmblueprint 57 | 58 | ## Obj-C/Swift specific 59 | *.hmap 60 | *.ipa 61 | *.dSYM.zip 62 | *.dSYM 63 | 64 | ## Playgrounds 65 | timeline.xctimeline 66 | playground.xcworkspace 67 | 68 | # Swift Package Manager 69 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 70 | # Packages/ 71 | # Package.pins 72 | # Package.resolved 73 | .build/ 74 | 75 | # CocoaPods 76 | # We recommend against adding the Pods directory to your .gitignore. However 77 | # you should judge for yourself, the pros and cons are mentioned at: 78 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 79 | # Pods/ 80 | # Add this line if you want to avoid checking in source code from the Xcode workspace 81 | # *.xcworkspace 82 | 83 | # Carthage 84 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 85 | # Carthage/Checkouts 86 | 87 | Carthage/Build 88 | 89 | # fastlane 90 | # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the 91 | # screenshots whenever they are needed. 92 | # For more information about the recommended setup visit: 93 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 94 | 95 | fastlane/report.xml 96 | fastlane/Preview.html 97 | fastlane/screenshots/**/*.png 98 | fastlane/test_output 99 | 100 | # Code Injection 101 | # After new code Injection tools there's a generated folder /iOSInjectionProject 102 | # https://github.com/johnno1962/injectionforxcode 103 | 104 | iOSInjectionProject/ 105 | 106 | ### Xcode ### 107 | # Xcode 108 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 109 | 110 | ## User settings 111 | 112 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 113 | 114 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 115 | 116 | ### Xcode Patch ### 117 | *.xcodeproj/* 118 | !*.xcodeproj/project.pbxproj 119 | !*.xcodeproj/xcshareddata/ 120 | !*.xcworkspace/contents.xcworkspacedata 121 | /*.gcno 122 | **/xcshareddata/WorkspaceSettings.xcsettings 123 | *.lock 124 | Pods/ 125 | 126 | # End of https://www.gitignore.io/api/macos,swift,xcode 127 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // JustGo-Revenge 4 | // 5 | // Created by 조우진 on 24/06/2019. 6 | // Copyright © 2019 조우진. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import CoreData 11 | 12 | @UIApplicationMain 13 | class AppDelegate: UIResponder, UIApplicationDelegate { 14 | 15 | var window: UIWindow? 16 | 17 | 18 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 19 | // Override point for customization after application launch. 20 | return true 21 | } 22 | 23 | func applicationWillResignActive(_ application: UIApplication) { 24 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 25 | // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 26 | } 27 | 28 | func applicationDidEnterBackground(_ application: UIApplication) { 29 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 30 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 31 | } 32 | 33 | func applicationWillEnterForeground(_ application: UIApplication) { 34 | // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 35 | } 36 | 37 | func applicationDidBecomeActive(_ application: UIApplication) { 38 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 39 | } 40 | 41 | func applicationWillTerminate(_ application: UIApplication) { 42 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 43 | // Saves changes in the application's managed object context before the application terminates. 44 | self.saveContext() 45 | } 46 | 47 | // MARK: - Core Data stack 48 | 49 | lazy var persistentContainer: NSPersistentContainer = { 50 | /* 51 | The persistent container for the application. This implementation 52 | creates and returns a container, having loaded the store for the 53 | application to it. This property is optional since there are legitimate 54 | error conditions that could cause the creation of the store to fail. 55 | */ 56 | let container = NSPersistentContainer(name: "JustGo_Revenge") 57 | container.loadPersistentStores(completionHandler: { (storeDescription, error) in 58 | if let error = error as NSError? { 59 | // Replace this implementation with code to handle the error appropriately. 60 | // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 61 | 62 | /* 63 | Typical reasons for an error here include: 64 | * The parent directory does not exist, cannot be created, or disallows writing. 65 | * The persistent store is not accessible, due to permissions or data protection when the device is locked. 66 | * The device is out of space. 67 | * The store could not be migrated to the current model version. 68 | Check the error message to determine what the actual problem was. 69 | */ 70 | fatalError("Unresolved error \(error), \(error.userInfo)") 71 | } 72 | }) 73 | return container 74 | }() 75 | 76 | // MARK: - Core Data Saving support 77 | 78 | func saveContext () { 79 | let context = persistentContainer.viewContext 80 | if context.hasChanges { 81 | do { 82 | try context.save() 83 | } catch { 84 | // Replace this implementation with code to handle the error appropriately. 85 | // fatalError() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 86 | let nserror = error as NSError 87 | fatalError("Unresolved error \(nserror), \(nserror.userInfo)") 88 | } 89 | } 90 | } 91 | 92 | } 93 | 94 | -------------------------------------------------------------------------------- /JustGo-Revenge/JustGo-Revenge.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6849516822C0E587001C57EF /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6849516722C0E587001C57EF /* AppDelegate.swift */; }; 11 | 6849516A22C0E587001C57EF /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6849516922C0E587001C57EF /* ViewController.swift */; }; 12 | 6849516D22C0E587001C57EF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6849516B22C0E587001C57EF /* Main.storyboard */; }; 13 | 6849517022C0E587001C57EF /* JustGo_Revenge.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 6849516E22C0E587001C57EF /* JustGo_Revenge.xcdatamodeld */; }; 14 | 6849517222C0E589001C57EF /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6849517122C0E589001C57EF /* Assets.xcassets */; }; 15 | 6849517522C0E589001C57EF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6849517322C0E589001C57EF /* LaunchScreen.storyboard */; }; 16 | 6849518022C0E589001C57EF /* JustGo_RevengeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6849517F22C0E589001C57EF /* JustGo_RevengeTests.swift */; }; 17 | 6849518B22C0E589001C57EF /* JustGo_RevengeUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6849518A22C0E589001C57EF /* JustGo_RevengeUITests.swift */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 6849517C22C0E589001C57EF /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 6849515C22C0E587001C57EF /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 6849516322C0E587001C57EF; 26 | remoteInfo = "JustGo-Revenge"; 27 | }; 28 | 6849518722C0E589001C57EF /* PBXContainerItemProxy */ = { 29 | isa = PBXContainerItemProxy; 30 | containerPortal = 6849515C22C0E587001C57EF /* Project object */; 31 | proxyType = 1; 32 | remoteGlobalIDString = 6849516322C0E587001C57EF; 33 | remoteInfo = "JustGo-Revenge"; 34 | }; 35 | /* End PBXContainerItemProxy section */ 36 | 37 | /* Begin PBXFileReference section */ 38 | 6849516422C0E587001C57EF /* JustGo-Revenge.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "JustGo-Revenge.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 6849516722C0E587001C57EF /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 40 | 6849516922C0E587001C57EF /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 41 | 6849516C22C0E587001C57EF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 42 | 6849516F22C0E587001C57EF /* JustGo_Revenge.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = JustGo_Revenge.xcdatamodel; sourceTree = ""; }; 43 | 6849517122C0E589001C57EF /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 44 | 6849517422C0E589001C57EF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 45 | 6849517622C0E589001C57EF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 6849517B22C0E589001C57EF /* JustGo-RevengeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "JustGo-RevengeTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | 6849517F22C0E589001C57EF /* JustGo_RevengeTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JustGo_RevengeTests.swift; sourceTree = ""; }; 48 | 6849518122C0E589001C57EF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 49 | 6849518622C0E589001C57EF /* JustGo-RevengeUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "JustGo-RevengeUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 50 | 6849518A22C0E589001C57EF /* JustGo_RevengeUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JustGo_RevengeUITests.swift; sourceTree = ""; }; 51 | 6849518C22C0E589001C57EF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 52 | /* End PBXFileReference section */ 53 | 54 | /* Begin PBXFrameworksBuildPhase section */ 55 | 6849516122C0E587001C57EF /* Frameworks */ = { 56 | isa = PBXFrameworksBuildPhase; 57 | buildActionMask = 2147483647; 58 | files = ( 59 | ); 60 | runOnlyForDeploymentPostprocessing = 0; 61 | }; 62 | 6849517822C0E589001C57EF /* Frameworks */ = { 63 | isa = PBXFrameworksBuildPhase; 64 | buildActionMask = 2147483647; 65 | files = ( 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | 6849518322C0E589001C57EF /* Frameworks */ = { 70 | isa = PBXFrameworksBuildPhase; 71 | buildActionMask = 2147483647; 72 | files = ( 73 | ); 74 | runOnlyForDeploymentPostprocessing = 0; 75 | }; 76 | /* End PBXFrameworksBuildPhase section */ 77 | 78 | /* Begin PBXGroup section */ 79 | 6849515B22C0E587001C57EF = { 80 | isa = PBXGroup; 81 | children = ( 82 | 6849516622C0E587001C57EF /* JustGo-Revenge */, 83 | 6849517E22C0E589001C57EF /* JustGo-RevengeTests */, 84 | 6849518922C0E589001C57EF /* JustGo-RevengeUITests */, 85 | 6849516522C0E587001C57EF /* Products */, 86 | ); 87 | sourceTree = ""; 88 | }; 89 | 6849516522C0E587001C57EF /* Products */ = { 90 | isa = PBXGroup; 91 | children = ( 92 | 6849516422C0E587001C57EF /* JustGo-Revenge.app */, 93 | 6849517B22C0E589001C57EF /* JustGo-RevengeTests.xctest */, 94 | 6849518622C0E589001C57EF /* JustGo-RevengeUITests.xctest */, 95 | ); 96 | name = Products; 97 | sourceTree = ""; 98 | }; 99 | 6849516622C0E587001C57EF /* JustGo-Revenge */ = { 100 | isa = PBXGroup; 101 | children = ( 102 | 6849516722C0E587001C57EF /* AppDelegate.swift */, 103 | 6849516922C0E587001C57EF /* ViewController.swift */, 104 | 6849516B22C0E587001C57EF /* Main.storyboard */, 105 | 6849517122C0E589001C57EF /* Assets.xcassets */, 106 | 6849517322C0E589001C57EF /* LaunchScreen.storyboard */, 107 | 6849517622C0E589001C57EF /* Info.plist */, 108 | 6849516E22C0E587001C57EF /* JustGo_Revenge.xcdatamodeld */, 109 | ); 110 | path = "JustGo-Revenge"; 111 | sourceTree = ""; 112 | }; 113 | 6849517E22C0E589001C57EF /* JustGo-RevengeTests */ = { 114 | isa = PBXGroup; 115 | children = ( 116 | 6849517F22C0E589001C57EF /* JustGo_RevengeTests.swift */, 117 | 6849518122C0E589001C57EF /* Info.plist */, 118 | ); 119 | path = "JustGo-RevengeTests"; 120 | sourceTree = ""; 121 | }; 122 | 6849518922C0E589001C57EF /* JustGo-RevengeUITests */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | 6849518A22C0E589001C57EF /* JustGo_RevengeUITests.swift */, 126 | 6849518C22C0E589001C57EF /* Info.plist */, 127 | ); 128 | path = "JustGo-RevengeUITests"; 129 | sourceTree = ""; 130 | }; 131 | /* End PBXGroup section */ 132 | 133 | /* Begin PBXNativeTarget section */ 134 | 6849516322C0E587001C57EF /* JustGo-Revenge */ = { 135 | isa = PBXNativeTarget; 136 | buildConfigurationList = 6849518F22C0E589001C57EF /* Build configuration list for PBXNativeTarget "JustGo-Revenge" */; 137 | buildPhases = ( 138 | 6849516022C0E587001C57EF /* Sources */, 139 | 6849516122C0E587001C57EF /* Frameworks */, 140 | 6849516222C0E587001C57EF /* Resources */, 141 | ); 142 | buildRules = ( 143 | ); 144 | dependencies = ( 145 | ); 146 | name = "JustGo-Revenge"; 147 | productName = "JustGo-Revenge"; 148 | productReference = 6849516422C0E587001C57EF /* JustGo-Revenge.app */; 149 | productType = "com.apple.product-type.application"; 150 | }; 151 | 6849517A22C0E589001C57EF /* JustGo-RevengeTests */ = { 152 | isa = PBXNativeTarget; 153 | buildConfigurationList = 6849519222C0E589001C57EF /* Build configuration list for PBXNativeTarget "JustGo-RevengeTests" */; 154 | buildPhases = ( 155 | 6849517722C0E589001C57EF /* Sources */, 156 | 6849517822C0E589001C57EF /* Frameworks */, 157 | 6849517922C0E589001C57EF /* Resources */, 158 | ); 159 | buildRules = ( 160 | ); 161 | dependencies = ( 162 | 6849517D22C0E589001C57EF /* PBXTargetDependency */, 163 | ); 164 | name = "JustGo-RevengeTests"; 165 | productName = "JustGo-RevengeTests"; 166 | productReference = 6849517B22C0E589001C57EF /* JustGo-RevengeTests.xctest */; 167 | productType = "com.apple.product-type.bundle.unit-test"; 168 | }; 169 | 6849518522C0E589001C57EF /* JustGo-RevengeUITests */ = { 170 | isa = PBXNativeTarget; 171 | buildConfigurationList = 6849519522C0E589001C57EF /* Build configuration list for PBXNativeTarget "JustGo-RevengeUITests" */; 172 | buildPhases = ( 173 | 6849518222C0E589001C57EF /* Sources */, 174 | 6849518322C0E589001C57EF /* Frameworks */, 175 | 6849518422C0E589001C57EF /* Resources */, 176 | ); 177 | buildRules = ( 178 | ); 179 | dependencies = ( 180 | 6849518822C0E589001C57EF /* PBXTargetDependency */, 181 | ); 182 | name = "JustGo-RevengeUITests"; 183 | productName = "JustGo-RevengeUITests"; 184 | productReference = 6849518622C0E589001C57EF /* JustGo-RevengeUITests.xctest */; 185 | productType = "com.apple.product-type.bundle.ui-testing"; 186 | }; 187 | /* End PBXNativeTarget section */ 188 | 189 | /* Begin PBXProject section */ 190 | 6849515C22C0E587001C57EF /* Project object */ = { 191 | isa = PBXProject; 192 | attributes = { 193 | LastSwiftUpdateCheck = 1020; 194 | LastUpgradeCheck = 1020; 195 | ORGANIZATIONNAME = "조우진"; 196 | TargetAttributes = { 197 | 6849516322C0E587001C57EF = { 198 | CreatedOnToolsVersion = 10.2.1; 199 | }; 200 | 6849517A22C0E589001C57EF = { 201 | CreatedOnToolsVersion = 10.2.1; 202 | TestTargetID = 6849516322C0E587001C57EF; 203 | }; 204 | 6849518522C0E589001C57EF = { 205 | CreatedOnToolsVersion = 10.2.1; 206 | TestTargetID = 6849516322C0E587001C57EF; 207 | }; 208 | }; 209 | }; 210 | buildConfigurationList = 6849515F22C0E587001C57EF /* Build configuration list for PBXProject "JustGo-Revenge" */; 211 | compatibilityVersion = "Xcode 9.3"; 212 | developmentRegion = en; 213 | hasScannedForEncodings = 0; 214 | knownRegions = ( 215 | en, 216 | Base, 217 | ); 218 | mainGroup = 6849515B22C0E587001C57EF; 219 | productRefGroup = 6849516522C0E587001C57EF /* Products */; 220 | projectDirPath = ""; 221 | projectRoot = ""; 222 | targets = ( 223 | 6849516322C0E587001C57EF /* JustGo-Revenge */, 224 | 6849517A22C0E589001C57EF /* JustGo-RevengeTests */, 225 | 6849518522C0E589001C57EF /* JustGo-RevengeUITests */, 226 | ); 227 | }; 228 | /* End PBXProject section */ 229 | 230 | /* Begin PBXResourcesBuildPhase section */ 231 | 6849516222C0E587001C57EF /* Resources */ = { 232 | isa = PBXResourcesBuildPhase; 233 | buildActionMask = 2147483647; 234 | files = ( 235 | 6849517522C0E589001C57EF /* LaunchScreen.storyboard in Resources */, 236 | 6849517222C0E589001C57EF /* Assets.xcassets in Resources */, 237 | 6849516D22C0E587001C57EF /* Main.storyboard in Resources */, 238 | ); 239 | runOnlyForDeploymentPostprocessing = 0; 240 | }; 241 | 6849517922C0E589001C57EF /* Resources */ = { 242 | isa = PBXResourcesBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | ); 246 | runOnlyForDeploymentPostprocessing = 0; 247 | }; 248 | 6849518422C0E589001C57EF /* Resources */ = { 249 | isa = PBXResourcesBuildPhase; 250 | buildActionMask = 2147483647; 251 | files = ( 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | /* End PBXResourcesBuildPhase section */ 256 | 257 | /* Begin PBXSourcesBuildPhase section */ 258 | 6849516022C0E587001C57EF /* Sources */ = { 259 | isa = PBXSourcesBuildPhase; 260 | buildActionMask = 2147483647; 261 | files = ( 262 | 6849516A22C0E587001C57EF /* ViewController.swift in Sources */, 263 | 6849517022C0E587001C57EF /* JustGo_Revenge.xcdatamodeld in Sources */, 264 | 6849516822C0E587001C57EF /* AppDelegate.swift in Sources */, 265 | ); 266 | runOnlyForDeploymentPostprocessing = 0; 267 | }; 268 | 6849517722C0E589001C57EF /* Sources */ = { 269 | isa = PBXSourcesBuildPhase; 270 | buildActionMask = 2147483647; 271 | files = ( 272 | 6849518022C0E589001C57EF /* JustGo_RevengeTests.swift in Sources */, 273 | ); 274 | runOnlyForDeploymentPostprocessing = 0; 275 | }; 276 | 6849518222C0E589001C57EF /* Sources */ = { 277 | isa = PBXSourcesBuildPhase; 278 | buildActionMask = 2147483647; 279 | files = ( 280 | 6849518B22C0E589001C57EF /* JustGo_RevengeUITests.swift in Sources */, 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | }; 284 | /* End PBXSourcesBuildPhase section */ 285 | 286 | /* Begin PBXTargetDependency section */ 287 | 6849517D22C0E589001C57EF /* PBXTargetDependency */ = { 288 | isa = PBXTargetDependency; 289 | target = 6849516322C0E587001C57EF /* JustGo-Revenge */; 290 | targetProxy = 6849517C22C0E589001C57EF /* PBXContainerItemProxy */; 291 | }; 292 | 6849518822C0E589001C57EF /* PBXTargetDependency */ = { 293 | isa = PBXTargetDependency; 294 | target = 6849516322C0E587001C57EF /* JustGo-Revenge */; 295 | targetProxy = 6849518722C0E589001C57EF /* PBXContainerItemProxy */; 296 | }; 297 | /* End PBXTargetDependency section */ 298 | 299 | /* Begin PBXVariantGroup section */ 300 | 6849516B22C0E587001C57EF /* Main.storyboard */ = { 301 | isa = PBXVariantGroup; 302 | children = ( 303 | 6849516C22C0E587001C57EF /* Base */, 304 | ); 305 | name = Main.storyboard; 306 | sourceTree = ""; 307 | }; 308 | 6849517322C0E589001C57EF /* LaunchScreen.storyboard */ = { 309 | isa = PBXVariantGroup; 310 | children = ( 311 | 6849517422C0E589001C57EF /* Base */, 312 | ); 313 | name = LaunchScreen.storyboard; 314 | sourceTree = ""; 315 | }; 316 | /* End PBXVariantGroup section */ 317 | 318 | /* Begin XCBuildConfiguration section */ 319 | 6849518D22C0E589001C57EF /* Debug */ = { 320 | isa = XCBuildConfiguration; 321 | buildSettings = { 322 | ALWAYS_SEARCH_USER_PATHS = NO; 323 | CLANG_ANALYZER_NONNULL = YES; 324 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 325 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 326 | CLANG_CXX_LIBRARY = "libc++"; 327 | CLANG_ENABLE_MODULES = YES; 328 | CLANG_ENABLE_OBJC_ARC = YES; 329 | CLANG_ENABLE_OBJC_WEAK = YES; 330 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 331 | CLANG_WARN_BOOL_CONVERSION = YES; 332 | CLANG_WARN_COMMA = YES; 333 | CLANG_WARN_CONSTANT_CONVERSION = YES; 334 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 335 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 336 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 337 | CLANG_WARN_EMPTY_BODY = YES; 338 | CLANG_WARN_ENUM_CONVERSION = YES; 339 | CLANG_WARN_INFINITE_RECURSION = YES; 340 | CLANG_WARN_INT_CONVERSION = YES; 341 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 342 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 343 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 344 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 345 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 346 | CLANG_WARN_STRICT_PROTOTYPES = YES; 347 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 348 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 349 | CLANG_WARN_UNREACHABLE_CODE = YES; 350 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 351 | CODE_SIGN_IDENTITY = "iPhone Developer"; 352 | COPY_PHASE_STRIP = NO; 353 | DEBUG_INFORMATION_FORMAT = dwarf; 354 | ENABLE_STRICT_OBJC_MSGSEND = YES; 355 | ENABLE_TESTABILITY = YES; 356 | GCC_C_LANGUAGE_STANDARD = gnu11; 357 | GCC_DYNAMIC_NO_PIC = NO; 358 | GCC_NO_COMMON_BLOCKS = YES; 359 | GCC_OPTIMIZATION_LEVEL = 0; 360 | GCC_PREPROCESSOR_DEFINITIONS = ( 361 | "DEBUG=1", 362 | "$(inherited)", 363 | ); 364 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 365 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 366 | GCC_WARN_UNDECLARED_SELECTOR = YES; 367 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 368 | GCC_WARN_UNUSED_FUNCTION = YES; 369 | GCC_WARN_UNUSED_VARIABLE = YES; 370 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 371 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 372 | MTL_FAST_MATH = YES; 373 | ONLY_ACTIVE_ARCH = YES; 374 | SDKROOT = iphoneos; 375 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 376 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 377 | }; 378 | name = Debug; 379 | }; 380 | 6849518E22C0E589001C57EF /* Release */ = { 381 | isa = XCBuildConfiguration; 382 | buildSettings = { 383 | ALWAYS_SEARCH_USER_PATHS = NO; 384 | CLANG_ANALYZER_NONNULL = YES; 385 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 386 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 387 | CLANG_CXX_LIBRARY = "libc++"; 388 | CLANG_ENABLE_MODULES = YES; 389 | CLANG_ENABLE_OBJC_ARC = YES; 390 | CLANG_ENABLE_OBJC_WEAK = YES; 391 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 392 | CLANG_WARN_BOOL_CONVERSION = YES; 393 | CLANG_WARN_COMMA = YES; 394 | CLANG_WARN_CONSTANT_CONVERSION = YES; 395 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 396 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 397 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 398 | CLANG_WARN_EMPTY_BODY = YES; 399 | CLANG_WARN_ENUM_CONVERSION = YES; 400 | CLANG_WARN_INFINITE_RECURSION = YES; 401 | CLANG_WARN_INT_CONVERSION = YES; 402 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 403 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 404 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 405 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 406 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 407 | CLANG_WARN_STRICT_PROTOTYPES = YES; 408 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 409 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 410 | CLANG_WARN_UNREACHABLE_CODE = YES; 411 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 412 | CODE_SIGN_IDENTITY = "iPhone Developer"; 413 | COPY_PHASE_STRIP = NO; 414 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 415 | ENABLE_NS_ASSERTIONS = NO; 416 | ENABLE_STRICT_OBJC_MSGSEND = YES; 417 | GCC_C_LANGUAGE_STANDARD = gnu11; 418 | GCC_NO_COMMON_BLOCKS = YES; 419 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 420 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 421 | GCC_WARN_UNDECLARED_SELECTOR = YES; 422 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 423 | GCC_WARN_UNUSED_FUNCTION = YES; 424 | GCC_WARN_UNUSED_VARIABLE = YES; 425 | IPHONEOS_DEPLOYMENT_TARGET = 12.2; 426 | MTL_ENABLE_DEBUG_INFO = NO; 427 | MTL_FAST_MATH = YES; 428 | SDKROOT = iphoneos; 429 | SWIFT_COMPILATION_MODE = wholemodule; 430 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 431 | VALIDATE_PRODUCT = YES; 432 | }; 433 | name = Release; 434 | }; 435 | 6849519022C0E589001C57EF /* Debug */ = { 436 | isa = XCBuildConfiguration; 437 | buildSettings = { 438 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 439 | CODE_SIGN_STYLE = Automatic; 440 | DEVELOPMENT_TEAM = SSZ5VFB95C; 441 | INFOPLIST_FILE = "JustGo-Revenge/Info.plist"; 442 | LD_RUNPATH_SEARCH_PATHS = ( 443 | "$(inherited)", 444 | "@executable_path/Frameworks", 445 | ); 446 | PRODUCT_BUNDLE_IDENTIFIER = "com.woopa.JustGo-Revenge"; 447 | PRODUCT_NAME = "$(TARGET_NAME)"; 448 | SWIFT_VERSION = 5.0; 449 | TARGETED_DEVICE_FAMILY = "1,2"; 450 | }; 451 | name = Debug; 452 | }; 453 | 6849519122C0E589001C57EF /* Release */ = { 454 | isa = XCBuildConfiguration; 455 | buildSettings = { 456 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 457 | CODE_SIGN_STYLE = Automatic; 458 | DEVELOPMENT_TEAM = SSZ5VFB95C; 459 | INFOPLIST_FILE = "JustGo-Revenge/Info.plist"; 460 | LD_RUNPATH_SEARCH_PATHS = ( 461 | "$(inherited)", 462 | "@executable_path/Frameworks", 463 | ); 464 | PRODUCT_BUNDLE_IDENTIFIER = "com.woopa.JustGo-Revenge"; 465 | PRODUCT_NAME = "$(TARGET_NAME)"; 466 | SWIFT_VERSION = 5.0; 467 | TARGETED_DEVICE_FAMILY = "1,2"; 468 | }; 469 | name = Release; 470 | }; 471 | 6849519322C0E589001C57EF /* Debug */ = { 472 | isa = XCBuildConfiguration; 473 | buildSettings = { 474 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 475 | BUNDLE_LOADER = "$(TEST_HOST)"; 476 | CODE_SIGN_STYLE = Automatic; 477 | DEVELOPMENT_TEAM = SSZ5VFB95C; 478 | INFOPLIST_FILE = "JustGo-RevengeTests/Info.plist"; 479 | LD_RUNPATH_SEARCH_PATHS = ( 480 | "$(inherited)", 481 | "@executable_path/Frameworks", 482 | "@loader_path/Frameworks", 483 | ); 484 | PRODUCT_BUNDLE_IDENTIFIER = "com.woopa.JustGo-RevengeTests"; 485 | PRODUCT_NAME = "$(TARGET_NAME)"; 486 | SWIFT_VERSION = 5.0; 487 | TARGETED_DEVICE_FAMILY = "1,2"; 488 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JustGo-Revenge.app/JustGo-Revenge"; 489 | }; 490 | name = Debug; 491 | }; 492 | 6849519422C0E589001C57EF /* Release */ = { 493 | isa = XCBuildConfiguration; 494 | buildSettings = { 495 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 496 | BUNDLE_LOADER = "$(TEST_HOST)"; 497 | CODE_SIGN_STYLE = Automatic; 498 | DEVELOPMENT_TEAM = SSZ5VFB95C; 499 | INFOPLIST_FILE = "JustGo-RevengeTests/Info.plist"; 500 | LD_RUNPATH_SEARCH_PATHS = ( 501 | "$(inherited)", 502 | "@executable_path/Frameworks", 503 | "@loader_path/Frameworks", 504 | ); 505 | PRODUCT_BUNDLE_IDENTIFIER = "com.woopa.JustGo-RevengeTests"; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SWIFT_VERSION = 5.0; 508 | TARGETED_DEVICE_FAMILY = "1,2"; 509 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/JustGo-Revenge.app/JustGo-Revenge"; 510 | }; 511 | name = Release; 512 | }; 513 | 6849519622C0E589001C57EF /* Debug */ = { 514 | isa = XCBuildConfiguration; 515 | buildSettings = { 516 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 517 | CODE_SIGN_STYLE = Automatic; 518 | DEVELOPMENT_TEAM = SSZ5VFB95C; 519 | INFOPLIST_FILE = "JustGo-RevengeUITests/Info.plist"; 520 | LD_RUNPATH_SEARCH_PATHS = ( 521 | "$(inherited)", 522 | "@executable_path/Frameworks", 523 | "@loader_path/Frameworks", 524 | ); 525 | PRODUCT_BUNDLE_IDENTIFIER = "com.woopa.JustGo-RevengeUITests"; 526 | PRODUCT_NAME = "$(TARGET_NAME)"; 527 | SWIFT_VERSION = 5.0; 528 | TARGETED_DEVICE_FAMILY = "1,2"; 529 | TEST_TARGET_NAME = "JustGo-Revenge"; 530 | }; 531 | name = Debug; 532 | }; 533 | 6849519722C0E589001C57EF /* Release */ = { 534 | isa = XCBuildConfiguration; 535 | buildSettings = { 536 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; 537 | CODE_SIGN_STYLE = Automatic; 538 | DEVELOPMENT_TEAM = SSZ5VFB95C; 539 | INFOPLIST_FILE = "JustGo-RevengeUITests/Info.plist"; 540 | LD_RUNPATH_SEARCH_PATHS = ( 541 | "$(inherited)", 542 | "@executable_path/Frameworks", 543 | "@loader_path/Frameworks", 544 | ); 545 | PRODUCT_BUNDLE_IDENTIFIER = "com.woopa.JustGo-RevengeUITests"; 546 | PRODUCT_NAME = "$(TARGET_NAME)"; 547 | SWIFT_VERSION = 5.0; 548 | TARGETED_DEVICE_FAMILY = "1,2"; 549 | TEST_TARGET_NAME = "JustGo-Revenge"; 550 | }; 551 | name = Release; 552 | }; 553 | /* End XCBuildConfiguration section */ 554 | 555 | /* Begin XCConfigurationList section */ 556 | 6849515F22C0E587001C57EF /* Build configuration list for PBXProject "JustGo-Revenge" */ = { 557 | isa = XCConfigurationList; 558 | buildConfigurations = ( 559 | 6849518D22C0E589001C57EF /* Debug */, 560 | 6849518E22C0E589001C57EF /* Release */, 561 | ); 562 | defaultConfigurationIsVisible = 0; 563 | defaultConfigurationName = Release; 564 | }; 565 | 6849518F22C0E589001C57EF /* Build configuration list for PBXNativeTarget "JustGo-Revenge" */ = { 566 | isa = XCConfigurationList; 567 | buildConfigurations = ( 568 | 6849519022C0E589001C57EF /* Debug */, 569 | 6849519122C0E589001C57EF /* Release */, 570 | ); 571 | defaultConfigurationIsVisible = 0; 572 | defaultConfigurationName = Release; 573 | }; 574 | 6849519222C0E589001C57EF /* Build configuration list for PBXNativeTarget "JustGo-RevengeTests" */ = { 575 | isa = XCConfigurationList; 576 | buildConfigurations = ( 577 | 6849519322C0E589001C57EF /* Debug */, 578 | 6849519422C0E589001C57EF /* Release */, 579 | ); 580 | defaultConfigurationIsVisible = 0; 581 | defaultConfigurationName = Release; 582 | }; 583 | 6849519522C0E589001C57EF /* Build configuration list for PBXNativeTarget "JustGo-RevengeUITests" */ = { 584 | isa = XCConfigurationList; 585 | buildConfigurations = ( 586 | 6849519622C0E589001C57EF /* Debug */, 587 | 6849519722C0E589001C57EF /* Release */, 588 | ); 589 | defaultConfigurationIsVisible = 0; 590 | defaultConfigurationName = Release; 591 | }; 592 | /* End XCConfigurationList section */ 593 | 594 | /* Begin XCVersionGroup section */ 595 | 6849516E22C0E587001C57EF /* JustGo_Revenge.xcdatamodeld */ = { 596 | isa = XCVersionGroup; 597 | children = ( 598 | 6849516F22C0E587001C57EF /* JustGo_Revenge.xcdatamodel */, 599 | ); 600 | currentVersion = 6849516F22C0E587001C57EF /* JustGo_Revenge.xcdatamodel */; 601 | path = JustGo_Revenge.xcdatamodeld; 602 | sourceTree = ""; 603 | versionGroupType = wrapper.xcdatamodel; 604 | }; 605 | /* End XCVersionGroup section */ 606 | }; 607 | rootObject = 6849515C22C0E587001C57EF /* Project object */; 608 | } 609 | --------------------------------------------------------------------------------