├── ViperExtensionTest
├── ViperExtensionTest
│ ├── Assets.xcassets
│ │ ├── Contents.json
│ │ ├── AccentColor.colorset
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ └── Contents.json
│ ├── Test
│ │ ├── TestInteractor.swift
│ │ ├── TestRouter.swift
│ │ ├── TestPageBuilder.swift
│ │ ├── TestPresenter.swift
│ │ ├── TestVC.swift
│ │ └── TestContracts.swift
│ ├── ViewController.swift
│ ├── AppDelegate.swift
│ ├── Base.lproj
│ │ ├── Main.storyboard
│ │ └── LaunchScreen.storyboard
│ ├── Info.plist
│ └── SceneDelegate.swift
└── ViperExtensionTest.xcodeproj
│ ├── project.xcworkspace
│ ├── contents.xcworkspacedata
│ ├── xcuserdata
│ │ └── cemalbayri.xcuserdatad
│ │ │ └── UserInterfaceState.xcuserstate
│ └── xcshareddata
│ │ └── IDEWorkspaceChecks.plist
│ ├── xcuserdata
│ └── cemalbayri.xcuserdatad
│ │ └── xcschemes
│ │ └── xcschememanagement.plist
│ └── project.pbxproj
├── importTemplate
├── Architectures
└── VIPER.xctemplate
│ ├── Fullcode
│ ├── ___FILEBASENAME___Interactor.swift
│ ├── ___FILEBASENAME___Router.swift
│ ├── ___FILEBASENAME___PageBuilder.swift
│ ├── ___FILEBASENAME___VC.swift
│ ├── ___FILEBASENAME___Presenter.swift
│ └── ___FILEBASENAME___Contracts.swift
│ └── TemplateInfo.plist
└── README.md
/ViperExtensionTest/ViperExtensionTest/Assets.xcassets/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "info" : {
3 | "author" : "xcode",
4 | "version" : 1
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/importTemplate:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 | # -*- coding: utf-8 -*-
3 |
4 | cd $(dirname "$0")
5 | cp -R Architectures /Applications/Xcode.app/Contents/Developer/Library/Xcode/Templates/File\ Templates/
6 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/Fullcode/___FILEBASENAME___Interactor.swift:
--------------------------------------------------------------------------------
1 | //___FILEHEADER___
2 |
3 | final class ___FILEBASENAMEASIDENTIFIER___: ___FILEBASENAME___Protocol {
4 | weak var delegate: ___FILEBASENAME___Delegate!
5 | }
6 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Assets.xcassets/AccentColor.colorset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "colors" : [
3 | {
4 | "idiom" : "universal"
5 | }
6 | ],
7 | "info" : {
8 | "author" : "xcode",
9 | "version" : 1
10 | }
11 | }
12 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Test/TestInteractor.swift:
--------------------------------------------------------------------------------
1 | //
2 | // TestInteractor.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 23.04.2021.
6 | //
7 |
8 | final class TestInteractor: TestInteractorProtocol {
9 | weak var delegate: TestInteractorDelegate!
10 | }
11 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest.xcodeproj/project.xcworkspace/xcuserdata/cemalbayri.xcuserdatad/UserInterfaceState.xcuserstate:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Cemoo/VIPERArchitectureGenerator/HEAD/ViperExtensionTest/ViperExtensionTest.xcodeproj/project.xcworkspace/xcuserdata/cemalbayri.xcuserdatad/UserInterfaceState.xcuserstate
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Test/TestRouter.swift:
--------------------------------------------------------------------------------
1 | //
2 | // TestRouter.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 23.04.2021.
6 | //
7 |
8 | import UIKit
9 |
10 | final class TestRouter: TestRouterProtocol {
11 | var view: TestViewProtocol?
12 |
13 | init() {
14 |
15 | }
16 |
17 | func navigate(_ route: TestRoutes) {
18 |
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/ViewController.swift:
--------------------------------------------------------------------------------
1 | //
2 | // ViewController.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 21.04.2021.
6 | //
7 |
8 | import UIKit
9 |
10 | class ViewController: UIViewController {
11 |
12 | override func viewDidLoad() {
13 | super.viewDidLoad()
14 | // Do any additional setup after loading the view.
15 | }
16 |
17 |
18 | }
19 |
20 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/Fullcode/___FILEBASENAME___Router.swift:
--------------------------------------------------------------------------------
1 | //___FILEHEADER___
2 |
3 | import UIKit
4 |
5 | final class ___FILEBASENAMEASIDENTIFIER___: ___FILEBASENAMEASIDENTIFIER___Protocol {
6 | var view: ___VARIABLE_productName:identifier___ViewProtocol?
7 |
8 | init() {
9 |
10 | }
11 |
12 | func navigate(_ route: ___VARIABLE_productName:identifier___Routes) {
13 |
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest.xcodeproj/xcuserdata/cemalbayri.xcuserdatad/xcschemes/xcschememanagement.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | SchemeUserState
6 |
7 | ViperExtensionTest.xcscheme_^#shared#^_
8 |
9 | orderHint
10 | 0
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Test/TestPageBuilder.swift:
--------------------------------------------------------------------------------
1 | //
2 | // TestPageBuilder.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 23.04.2021.
6 | //
7 |
8 | import UIKit
9 |
10 | struct TestPageBuilder {
11 | static func make() -> TestVC {
12 | let router = TestRouter()
13 | let interactor = TestInteractor()
14 | let presenter = TestPresenter(router,interactor)
15 | let destinationVC = TestVC(presenter: presenter)
16 |
17 | presenter.view = destinationVC
18 | router.view = destinationVC
19 | return destinationVC
20 | }
21 | }
22 |
23 |
24 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/Fullcode/___FILEBASENAME___PageBuilder.swift:
--------------------------------------------------------------------------------
1 | //___FILEHEADER___
2 |
3 | import UIKit
4 |
5 | struct ___FILEBASENAMEASIDENTIFIER___ {
6 | static func make() -> ___VARIABLE_productName:identifier___VC {
7 | let router = ___VARIABLE_productName:identifier___Router()
8 | let interactor = ___VARIABLE_productName:identifier___Interactor()
9 | let presenter = ___VARIABLE_productName:identifier___Presenter(router,interactor)
10 | let destinationVC = ___VARIABLE_productName:identifier___VC(presenter: presenter)
11 |
12 | presenter.view = destinationVC
13 | router.view = destinationVC
14 | return destinationVC
15 | }
16 | }
17 |
18 |
19 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Test/TestPresenter.swift:
--------------------------------------------------------------------------------
1 | //
2 | // TestPresenter.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 23.04.2021.
6 | //
7 |
8 | final class TestPresenter: TestPresenterProtocol {
9 |
10 | private let interactor: TestInteractorProtocol!
11 | private let router: TestRouterProtocol!
12 | weak var view: TestViewProtocol?
13 |
14 | init(_ router: TestRouterProtocol, _ interactor: TestInteractorProtocol) {
15 | self.router = router
16 | self.interactor = interactor
17 |
18 | interactor.delegate = self
19 | }
20 | }
21 |
22 | extension TestPresenter: TestInteractorDelegate {
23 | func handle(_ output: TestInteractorOutputs) {
24 |
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Test/TestVC.swift:
--------------------------------------------------------------------------------
1 | //
2 | // TestVC.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 23.04.2021.
6 | //
7 |
8 | import UIKit
9 |
10 | class TestVC: UIViewController, TestViewProtocol {
11 | let presenter: TestPresenterProtocol
12 |
13 | init(presenter: TestPresenterProtocol) {
14 | self.presenter = presenter
15 | super.init(nibName: "", bundle: nil)
16 | }
17 |
18 | required init?(coder: NSCoder) {
19 | return nil
20 | }
21 |
22 | override func viewDidLoad() {
23 | super.viewDidLoad()
24 | setUI()
25 | }
26 |
27 | fileprivate func setUI() {
28 |
29 | }
30 | }
31 |
32 | extension TestVC {
33 | func handle(_ output: TestPresenterOutputs) {
34 |
35 | }
36 | }
37 |
38 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # VIPERArchitectureGenerator :fire:
2 |
3 | VIPERArchitectureGenerator provides files you needed in viper architecture with initialization codes and protocols.
4 |
5 | # INSTALLATION
6 |
7 | Manually
8 | ==========
9 |
10 | - Go to this path in your mac
11 | ```sh
12 | ~/Library/Developer/Xcode/Templates
13 | ```
14 | - Create a folder with name "Architectures" here
15 | - Paste the folder in repo.
16 |
17 | With script
18 | ==========
19 |
20 | - Just double click to `importTemplates` :open_file_folder:
21 |
22 | Clean Swift Architecture Generator
23 | ==================================
24 |
25 | You can easily create Clean Swift Architecture from [here](https://github.com/emrcftci/CleanSwiftArchitectureGenerator)
26 |
27 | # USAGE
28 | - Try to add new file with Cmd + N and type VIPER in search bar in XCode
29 | - Enter module name
30 | - WHOLAAA!!! :smile:
31 | - Enjoy
32 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/Fullcode/___FILEBASENAME___VC.swift:
--------------------------------------------------------------------------------
1 | //___FILEHEADER___
2 |
3 | import UIKit
4 |
5 | class ___FILEBASENAMEASIDENTIFIER___: UIViewController, ___VARIABLE_productName:identifier___ViewProtocol {
6 | let presenter: ___VARIABLE_productName:identifier___PresenterProtocol
7 |
8 | init(presenter: ___VARIABLE_productName:identifier___PresenterProtocol) {
9 | self.presenter = presenter
10 | super.init(nibName: "", bundle: nil)
11 | }
12 |
13 | required init?(coder: NSCoder) {
14 | return nil
15 | }
16 |
17 | override func viewDidLoad() {
18 | super.viewDidLoad()
19 | setUI()
20 | }
21 |
22 | fileprivate func setUI() {
23 |
24 | }
25 | }
26 |
27 | extension ___FILEBASENAMEASIDENTIFIER___ {
28 | func handle(_ output: ___VARIABLE_productName:identifier___PresenterOutputs) {
29 |
30 | }
31 | }
32 |
33 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/Fullcode/___FILEBASENAME___Presenter.swift:
--------------------------------------------------------------------------------
1 | //___FILEHEADER___
2 |
3 | final class ___FILEBASENAMEASIDENTIFIER___: ___FILEBASENAMEASIDENTIFIER___Protocol {
4 |
5 | private let interactor: ___VARIABLE_productName:identifier___InteractorProtocol!
6 | private let router: ___VARIABLE_productName:identifier___RouterProtocol!
7 | weak var view: ___VARIABLE_productName:identifier___ViewProtocol?
8 |
9 | init(_ router: ___VARIABLE_productName:identifier___RouterProtocol, _ interactor: ___VARIABLE_productName:identifier___InteractorProtocol) {
10 | self.router = router
11 | self.interactor = interactor
12 |
13 | interactor.delegate = self
14 | }
15 | }
16 |
17 | extension ___FILEBASENAMEASIDENTIFIER___: ___VARIABLE_productName:identifier___InteractorDelegate {
18 | func handle(_ output: ___VARIABLE_productName:identifier___InteractorOutputs) {
19 |
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Test/TestContracts.swift:
--------------------------------------------------------------------------------
1 | //
2 | // TestContracts.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 23.04.2021.
6 | //
7 |
8 | //PRESENTER
9 | protocol TestPresenterProtocol: class {
10 |
11 | }
12 |
13 | enum TestPresenterOutputs {
14 | case showError(String)
15 | case showData
16 | }
17 |
18 | /*------------------------*/
19 | //INTERACTOR
20 | protocol TestInteractorProtocol: class {
21 | var delegate: TestInteractorDelegate! {get set}
22 | }
23 |
24 | protocol TestInteractorDelegate: class {
25 | func handle(_ output: TestInteractorOutputs)
26 | }
27 |
28 | enum TestInteractorOutputs {
29 | case sendError(String)
30 | case sendData
31 | }
32 |
33 |
34 | /*------------------------*/
35 | //ROUTER
36 | protocol TestRouterProtocol: class {
37 | var view: TestViewProtocol? { get set }
38 | func navigate(_ route: TestRoutes)
39 | }
40 |
41 | enum TestRoutes {
42 |
43 | }
44 |
45 | /*------------------------*/
46 | //VIEW
47 |
48 | protocol TestViewProtocol: class {
49 | func handle(_ output: TestPresenterOutputs)
50 | }
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/TemplateInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Kind
6 | Xcode.IDEKit.TextSubstitutionFileTemplateKind
7 | Platforms
8 |
9 | com.apple.platform.iphoneos
10 |
11 | Options
12 |
13 |
14 | Identifier
15 | productName
16 | Required
17 |
18 | Name
19 | Module
20 | Description
21 | The name of the Viper Module
22 | Type
23 | text
24 | Default
25 | Module Name
26 |
27 |
28 | Identifier
29 | viewType
30 | Required
31 |
32 | Name
33 | Type:
34 | Description
35 | The type of Module to use
36 | Type
37 | popup
38 | Default
39 | Fullcode
40 | Values
41 |
42 | Fullcode
43 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Architectures/VIPER.xctemplate/Fullcode/___FILEBASENAME___Contracts.swift:
--------------------------------------------------------------------------------
1 | //___FILEHEADER___
2 |
3 | //PRESENTER
4 | protocol ___VARIABLE_productName:identifier___PresenterProtocol: class {
5 |
6 | }
7 |
8 | enum ___VARIABLE_productName:identifier___PresenterOutputs {
9 | case showError(String)
10 | case showData
11 | }
12 |
13 | /*------------------------*/
14 | //INTERACTOR
15 | protocol ___VARIABLE_productName:identifier___InteractorProtocol: class {
16 | var delegate: ___VARIABLE_productName:identifier___InteractorDelegate! {get set}
17 | }
18 |
19 | protocol ___VARIABLE_productName:identifier___InteractorDelegate: class {
20 | func handle(_ output: ___VARIABLE_productName:identifier___InteractorOutputs)
21 | }
22 |
23 | enum ___VARIABLE_productName:identifier___InteractorOutputs {
24 | case sendError(String)
25 | case sendData
26 | }
27 |
28 |
29 | /*------------------------*/
30 | //ROUTER
31 | protocol ___VARIABLE_productName:identifier___RouterProtocol: class {
32 | var view: ___VARIABLE_productName:identifier___ViewProtocol? { get set }
33 | func navigate(_ route: ___VARIABLE_productName:identifier___Routes)
34 | }
35 |
36 | enum ___VARIABLE_productName:identifier___Routes {
37 |
38 | }
39 |
40 | /*------------------------*/
41 | //VIEW
42 |
43 | protocol ___VARIABLE_productName:identifier___ViewProtocol: class {
44 | func handle(_ output: ___VARIABLE_productName:identifier___PresenterOutputs)
45 | }
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // AppDelegate.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 21.04.2021.
6 | //
7 |
8 | import UIKit
9 |
10 | @main
11 | class AppDelegate: UIResponder, UIApplicationDelegate {
12 |
13 |
14 |
15 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
16 | // Override point for customization after application launch.
17 | return true
18 | }
19 |
20 | // MARK: UISceneSession Lifecycle
21 |
22 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
23 | // Called when a new scene session is being created.
24 | // Use this method to select a configuration to create the new scene with.
25 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
26 | }
27 |
28 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) {
29 | // Called when the user discards a scene session.
30 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
31 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return.
32 | }
33 |
34 |
35 | }
36 |
37 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/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 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/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 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "iphone",
5 | "scale" : "2x",
6 | "size" : "20x20"
7 | },
8 | {
9 | "idiom" : "iphone",
10 | "scale" : "3x",
11 | "size" : "20x20"
12 | },
13 | {
14 | "idiom" : "iphone",
15 | "scale" : "2x",
16 | "size" : "29x29"
17 | },
18 | {
19 | "idiom" : "iphone",
20 | "scale" : "3x",
21 | "size" : "29x29"
22 | },
23 | {
24 | "idiom" : "iphone",
25 | "scale" : "2x",
26 | "size" : "40x40"
27 | },
28 | {
29 | "idiom" : "iphone",
30 | "scale" : "3x",
31 | "size" : "40x40"
32 | },
33 | {
34 | "idiom" : "iphone",
35 | "scale" : "2x",
36 | "size" : "60x60"
37 | },
38 | {
39 | "idiom" : "iphone",
40 | "scale" : "3x",
41 | "size" : "60x60"
42 | },
43 | {
44 | "idiom" : "ipad",
45 | "scale" : "1x",
46 | "size" : "20x20"
47 | },
48 | {
49 | "idiom" : "ipad",
50 | "scale" : "2x",
51 | "size" : "20x20"
52 | },
53 | {
54 | "idiom" : "ipad",
55 | "scale" : "1x",
56 | "size" : "29x29"
57 | },
58 | {
59 | "idiom" : "ipad",
60 | "scale" : "2x",
61 | "size" : "29x29"
62 | },
63 | {
64 | "idiom" : "ipad",
65 | "scale" : "1x",
66 | "size" : "40x40"
67 | },
68 | {
69 | "idiom" : "ipad",
70 | "scale" : "2x",
71 | "size" : "40x40"
72 | },
73 | {
74 | "idiom" : "ipad",
75 | "scale" : "1x",
76 | "size" : "76x76"
77 | },
78 | {
79 | "idiom" : "ipad",
80 | "scale" : "2x",
81 | "size" : "76x76"
82 | },
83 | {
84 | "idiom" : "ipad",
85 | "scale" : "2x",
86 | "size" : "83.5x83.5"
87 | },
88 | {
89 | "idiom" : "ios-marketing",
90 | "scale" : "1x",
91 | "size" : "1024x1024"
92 | }
93 | ],
94 | "info" : {
95 | "author" : "xcode",
96 | "version" : 1
97 | }
98 | }
99 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/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 | $(PRODUCT_BUNDLE_PACKAGE_TYPE)
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleVersion
20 | 1
21 | LSRequiresIPhoneOS
22 |
23 | UIApplicationSceneManifest
24 |
25 | UIApplicationSupportsMultipleScenes
26 |
27 | UISceneConfigurations
28 |
29 | UIWindowSceneSessionRoleApplication
30 |
31 |
32 | UISceneConfigurationName
33 | Default Configuration
34 | UISceneDelegateClassName
35 | $(PRODUCT_MODULE_NAME).SceneDelegate
36 | UISceneStoryboardFile
37 | Main
38 |
39 |
40 |
41 |
42 | UIApplicationSupportsIndirectInputEvents
43 |
44 | UILaunchStoryboardName
45 | LaunchScreen
46 | UIMainStoryboardFile
47 | Main
48 | UIRequiredDeviceCapabilities
49 |
50 | armv7
51 |
52 | UISupportedInterfaceOrientations
53 |
54 | UIInterfaceOrientationPortrait
55 | UIInterfaceOrientationLandscapeLeft
56 | UIInterfaceOrientationLandscapeRight
57 |
58 | UISupportedInterfaceOrientations~ipad
59 |
60 | UIInterfaceOrientationPortrait
61 | UIInterfaceOrientationPortraitUpsideDown
62 | UIInterfaceOrientationLandscapeLeft
63 | UIInterfaceOrientationLandscapeRight
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest/SceneDelegate.swift:
--------------------------------------------------------------------------------
1 | //
2 | // SceneDelegate.swift
3 | // ViperExtensionTest
4 | //
5 | // Created by Cemal BAYRI on 21.04.2021.
6 | //
7 |
8 | import UIKit
9 |
10 | class SceneDelegate: UIResponder, UIWindowSceneDelegate {
11 |
12 | var window: UIWindow?
13 |
14 |
15 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
16 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`.
17 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene.
18 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead).
19 | guard let _ = (scene as? UIWindowScene) else { return }
20 | }
21 |
22 | func sceneDidDisconnect(_ scene: UIScene) {
23 | // Called as the scene is being released by the system.
24 | // This occurs shortly after the scene enters the background, or when its session is discarded.
25 | // Release any resources associated with this scene that can be re-created the next time the scene connects.
26 | // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead).
27 | }
28 |
29 | func sceneDidBecomeActive(_ scene: UIScene) {
30 | // Called when the scene has moved from an inactive state to an active state.
31 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
32 | }
33 |
34 | func sceneWillResignActive(_ scene: UIScene) {
35 | // Called when the scene will move from an active state to an inactive state.
36 | // This may occur due to temporary interruptions (ex. an incoming phone call).
37 | }
38 |
39 | func sceneWillEnterForeground(_ scene: UIScene) {
40 | // Called as the scene transitions from the background to the foreground.
41 | // Use this method to undo the changes made on entering the background.
42 | }
43 |
44 | func sceneDidEnterBackground(_ scene: UIScene) {
45 | // Called as the scene transitions from the foreground to the background.
46 | // Use this method to save data, release shared resources, and store enough scene-specific state information
47 | // to restore the scene back to its current state.
48 | }
49 |
50 |
51 | }
52 |
53 |
--------------------------------------------------------------------------------
/ViperExtensionTest/ViperExtensionTest.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 50;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | D0163F302630C5150055FAC9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0163F2F2630C5150055FAC9 /* AppDelegate.swift */; };
11 | D0163F322630C5150055FAC9 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0163F312630C5150055FAC9 /* SceneDelegate.swift */; };
12 | D0163F342630C5150055FAC9 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0163F332630C5150055FAC9 /* ViewController.swift */; };
13 | D0163F372630C5150055FAC9 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0163F352630C5150055FAC9 /* Main.storyboard */; };
14 | D0163F392630C5180055FAC9 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D0163F382630C5180055FAC9 /* Assets.xcassets */; };
15 | D0163F3C2630C5180055FAC9 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0163F3A2630C5180055FAC9 /* LaunchScreen.storyboard */; };
16 | D062A4AB2632DA9A0099298D /* TestPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D062A4A52632DA9A0099298D /* TestPresenter.swift */; };
17 | D062A4AC2632DA9A0099298D /* TestRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = D062A4A62632DA9A0099298D /* TestRouter.swift */; };
18 | D062A4AD2632DA9A0099298D /* TestContracts.swift in Sources */ = {isa = PBXBuildFile; fileRef = D062A4A72632DA9A0099298D /* TestContracts.swift */; };
19 | D062A4AE2632DA9A0099298D /* TestInteractor.swift in Sources */ = {isa = PBXBuildFile; fileRef = D062A4A82632DA9A0099298D /* TestInteractor.swift */; };
20 | D062A4AF2632DA9A0099298D /* TestVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = D062A4A92632DA9A0099298D /* TestVC.swift */; };
21 | D062A4B02632DA9A0099298D /* TestPageBuilder.swift in Sources */ = {isa = PBXBuildFile; fileRef = D062A4AA2632DA9A0099298D /* TestPageBuilder.swift */; };
22 | /* End PBXBuildFile section */
23 |
24 | /* Begin PBXFileReference section */
25 | D0163F2C2630C5150055FAC9 /* ViperExtensionTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ViperExtensionTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
26 | D0163F2F2630C5150055FAC9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
27 | D0163F312630C5150055FAC9 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; };
28 | D0163F332630C5150055FAC9 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; };
29 | D0163F362630C5150055FAC9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
30 | D0163F382630C5180055FAC9 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
31 | D0163F3B2630C5180055FAC9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
32 | D0163F3D2630C5180055FAC9 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
33 | D062A4A52632DA9A0099298D /* TestPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestPresenter.swift; sourceTree = ""; };
34 | D062A4A62632DA9A0099298D /* TestRouter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestRouter.swift; sourceTree = ""; };
35 | D062A4A72632DA9A0099298D /* TestContracts.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestContracts.swift; sourceTree = ""; };
36 | D062A4A82632DA9A0099298D /* TestInteractor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestInteractor.swift; sourceTree = ""; };
37 | D062A4A92632DA9A0099298D /* TestVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestVC.swift; sourceTree = ""; };
38 | D062A4AA2632DA9A0099298D /* TestPageBuilder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestPageBuilder.swift; sourceTree = ""; };
39 | /* End PBXFileReference section */
40 |
41 | /* Begin PBXFrameworksBuildPhase section */
42 | D0163F292630C5150055FAC9 /* Frameworks */ = {
43 | isa = PBXFrameworksBuildPhase;
44 | buildActionMask = 2147483647;
45 | files = (
46 | );
47 | runOnlyForDeploymentPostprocessing = 0;
48 | };
49 | /* End PBXFrameworksBuildPhase section */
50 |
51 | /* Begin PBXGroup section */
52 | D0163F232630C5150055FAC9 = {
53 | isa = PBXGroup;
54 | children = (
55 | D0163F2E2630C5150055FAC9 /* ViperExtensionTest */,
56 | D0163F2D2630C5150055FAC9 /* Products */,
57 | );
58 | sourceTree = "";
59 | };
60 | D0163F2D2630C5150055FAC9 /* Products */ = {
61 | isa = PBXGroup;
62 | children = (
63 | D0163F2C2630C5150055FAC9 /* ViperExtensionTest.app */,
64 | );
65 | name = Products;
66 | sourceTree = "";
67 | };
68 | D0163F2E2630C5150055FAC9 /* ViperExtensionTest */ = {
69 | isa = PBXGroup;
70 | children = (
71 | D062A4A42632DA8A0099298D /* Test */,
72 | D0163F2F2630C5150055FAC9 /* AppDelegate.swift */,
73 | D0163F312630C5150055FAC9 /* SceneDelegate.swift */,
74 | D0163F332630C5150055FAC9 /* ViewController.swift */,
75 | D0163F352630C5150055FAC9 /* Main.storyboard */,
76 | D0163F382630C5180055FAC9 /* Assets.xcassets */,
77 | D0163F3A2630C5180055FAC9 /* LaunchScreen.storyboard */,
78 | D0163F3D2630C5180055FAC9 /* Info.plist */,
79 | );
80 | path = ViperExtensionTest;
81 | sourceTree = "";
82 | };
83 | D062A4A42632DA8A0099298D /* Test */ = {
84 | isa = PBXGroup;
85 | children = (
86 | D062A4A52632DA9A0099298D /* TestPresenter.swift */,
87 | D062A4A62632DA9A0099298D /* TestRouter.swift */,
88 | D062A4A72632DA9A0099298D /* TestContracts.swift */,
89 | D062A4A82632DA9A0099298D /* TestInteractor.swift */,
90 | D062A4A92632DA9A0099298D /* TestVC.swift */,
91 | D062A4AA2632DA9A0099298D /* TestPageBuilder.swift */,
92 | );
93 | path = Test;
94 | sourceTree = "";
95 | };
96 | /* End PBXGroup section */
97 |
98 | /* Begin PBXNativeTarget section */
99 | D0163F2B2630C5150055FAC9 /* ViperExtensionTest */ = {
100 | isa = PBXNativeTarget;
101 | buildConfigurationList = D0163F402630C5180055FAC9 /* Build configuration list for PBXNativeTarget "ViperExtensionTest" */;
102 | buildPhases = (
103 | D0163F282630C5150055FAC9 /* Sources */,
104 | D0163F292630C5150055FAC9 /* Frameworks */,
105 | D0163F2A2630C5150055FAC9 /* Resources */,
106 | );
107 | buildRules = (
108 | );
109 | dependencies = (
110 | );
111 | name = ViperExtensionTest;
112 | productName = ViperExtensionTest;
113 | productReference = D0163F2C2630C5150055FAC9 /* ViperExtensionTest.app */;
114 | productType = "com.apple.product-type.application";
115 | };
116 | /* End PBXNativeTarget section */
117 |
118 | /* Begin PBXProject section */
119 | D0163F242630C5150055FAC9 /* Project object */ = {
120 | isa = PBXProject;
121 | attributes = {
122 | LastSwiftUpdateCheck = 1240;
123 | LastUpgradeCheck = 1240;
124 | TargetAttributes = {
125 | D0163F2B2630C5150055FAC9 = {
126 | CreatedOnToolsVersion = 12.4;
127 | };
128 | };
129 | };
130 | buildConfigurationList = D0163F272630C5150055FAC9 /* Build configuration list for PBXProject "ViperExtensionTest" */;
131 | compatibilityVersion = "Xcode 9.3";
132 | developmentRegion = en;
133 | hasScannedForEncodings = 0;
134 | knownRegions = (
135 | en,
136 | Base,
137 | );
138 | mainGroup = D0163F232630C5150055FAC9;
139 | productRefGroup = D0163F2D2630C5150055FAC9 /* Products */;
140 | projectDirPath = "";
141 | projectRoot = "";
142 | targets = (
143 | D0163F2B2630C5150055FAC9 /* ViperExtensionTest */,
144 | );
145 | };
146 | /* End PBXProject section */
147 |
148 | /* Begin PBXResourcesBuildPhase section */
149 | D0163F2A2630C5150055FAC9 /* Resources */ = {
150 | isa = PBXResourcesBuildPhase;
151 | buildActionMask = 2147483647;
152 | files = (
153 | D0163F3C2630C5180055FAC9 /* LaunchScreen.storyboard in Resources */,
154 | D0163F392630C5180055FAC9 /* Assets.xcassets in Resources */,
155 | D0163F372630C5150055FAC9 /* Main.storyboard in Resources */,
156 | );
157 | runOnlyForDeploymentPostprocessing = 0;
158 | };
159 | /* End PBXResourcesBuildPhase section */
160 |
161 | /* Begin PBXSourcesBuildPhase section */
162 | D0163F282630C5150055FAC9 /* Sources */ = {
163 | isa = PBXSourcesBuildPhase;
164 | buildActionMask = 2147483647;
165 | files = (
166 | D062A4AF2632DA9A0099298D /* TestVC.swift in Sources */,
167 | D0163F342630C5150055FAC9 /* ViewController.swift in Sources */,
168 | D062A4AC2632DA9A0099298D /* TestRouter.swift in Sources */,
169 | D0163F302630C5150055FAC9 /* AppDelegate.swift in Sources */,
170 | D062A4AE2632DA9A0099298D /* TestInteractor.swift in Sources */,
171 | D062A4AB2632DA9A0099298D /* TestPresenter.swift in Sources */,
172 | D062A4B02632DA9A0099298D /* TestPageBuilder.swift in Sources */,
173 | D0163F322630C5150055FAC9 /* SceneDelegate.swift in Sources */,
174 | D062A4AD2632DA9A0099298D /* TestContracts.swift in Sources */,
175 | );
176 | runOnlyForDeploymentPostprocessing = 0;
177 | };
178 | /* End PBXSourcesBuildPhase section */
179 |
180 | /* Begin PBXVariantGroup section */
181 | D0163F352630C5150055FAC9 /* Main.storyboard */ = {
182 | isa = PBXVariantGroup;
183 | children = (
184 | D0163F362630C5150055FAC9 /* Base */,
185 | );
186 | name = Main.storyboard;
187 | sourceTree = "";
188 | };
189 | D0163F3A2630C5180055FAC9 /* LaunchScreen.storyboard */ = {
190 | isa = PBXVariantGroup;
191 | children = (
192 | D0163F3B2630C5180055FAC9 /* Base */,
193 | );
194 | name = LaunchScreen.storyboard;
195 | sourceTree = "";
196 | };
197 | /* End PBXVariantGroup section */
198 |
199 | /* Begin XCBuildConfiguration section */
200 | D0163F3E2630C5180055FAC9 /* Debug */ = {
201 | isa = XCBuildConfiguration;
202 | buildSettings = {
203 | ALWAYS_SEARCH_USER_PATHS = NO;
204 | CLANG_ANALYZER_NONNULL = YES;
205 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
206 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
207 | CLANG_CXX_LIBRARY = "libc++";
208 | CLANG_ENABLE_MODULES = YES;
209 | CLANG_ENABLE_OBJC_ARC = YES;
210 | CLANG_ENABLE_OBJC_WEAK = YES;
211 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
212 | CLANG_WARN_BOOL_CONVERSION = YES;
213 | CLANG_WARN_COMMA = YES;
214 | CLANG_WARN_CONSTANT_CONVERSION = YES;
215 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
216 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
217 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
218 | CLANG_WARN_EMPTY_BODY = YES;
219 | CLANG_WARN_ENUM_CONVERSION = YES;
220 | CLANG_WARN_INFINITE_RECURSION = YES;
221 | CLANG_WARN_INT_CONVERSION = YES;
222 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
223 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
224 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
225 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
226 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
227 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
228 | CLANG_WARN_STRICT_PROTOTYPES = YES;
229 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
230 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
231 | CLANG_WARN_UNREACHABLE_CODE = YES;
232 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
233 | COPY_PHASE_STRIP = NO;
234 | DEBUG_INFORMATION_FORMAT = dwarf;
235 | ENABLE_STRICT_OBJC_MSGSEND = YES;
236 | ENABLE_TESTABILITY = YES;
237 | GCC_C_LANGUAGE_STANDARD = gnu11;
238 | GCC_DYNAMIC_NO_PIC = NO;
239 | GCC_NO_COMMON_BLOCKS = YES;
240 | GCC_OPTIMIZATION_LEVEL = 0;
241 | GCC_PREPROCESSOR_DEFINITIONS = (
242 | "DEBUG=1",
243 | "$(inherited)",
244 | );
245 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
246 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
247 | GCC_WARN_UNDECLARED_SELECTOR = YES;
248 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
249 | GCC_WARN_UNUSED_FUNCTION = YES;
250 | GCC_WARN_UNUSED_VARIABLE = YES;
251 | IPHONEOS_DEPLOYMENT_TARGET = 14.4;
252 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
253 | MTL_FAST_MATH = YES;
254 | ONLY_ACTIVE_ARCH = YES;
255 | SDKROOT = iphoneos;
256 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
257 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
258 | };
259 | name = Debug;
260 | };
261 | D0163F3F2630C5180055FAC9 /* Release */ = {
262 | isa = XCBuildConfiguration;
263 | buildSettings = {
264 | ALWAYS_SEARCH_USER_PATHS = NO;
265 | CLANG_ANALYZER_NONNULL = YES;
266 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
267 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
268 | CLANG_CXX_LIBRARY = "libc++";
269 | CLANG_ENABLE_MODULES = YES;
270 | CLANG_ENABLE_OBJC_ARC = YES;
271 | CLANG_ENABLE_OBJC_WEAK = YES;
272 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
273 | CLANG_WARN_BOOL_CONVERSION = YES;
274 | CLANG_WARN_COMMA = YES;
275 | CLANG_WARN_CONSTANT_CONVERSION = YES;
276 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
277 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
278 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
279 | CLANG_WARN_EMPTY_BODY = YES;
280 | CLANG_WARN_ENUM_CONVERSION = YES;
281 | CLANG_WARN_INFINITE_RECURSION = YES;
282 | CLANG_WARN_INT_CONVERSION = YES;
283 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
284 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
285 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
286 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
287 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
288 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
289 | CLANG_WARN_STRICT_PROTOTYPES = YES;
290 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
291 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
292 | CLANG_WARN_UNREACHABLE_CODE = YES;
293 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
294 | COPY_PHASE_STRIP = NO;
295 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
296 | ENABLE_NS_ASSERTIONS = NO;
297 | ENABLE_STRICT_OBJC_MSGSEND = YES;
298 | GCC_C_LANGUAGE_STANDARD = gnu11;
299 | GCC_NO_COMMON_BLOCKS = YES;
300 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
301 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
302 | GCC_WARN_UNDECLARED_SELECTOR = YES;
303 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
304 | GCC_WARN_UNUSED_FUNCTION = YES;
305 | GCC_WARN_UNUSED_VARIABLE = YES;
306 | IPHONEOS_DEPLOYMENT_TARGET = 14.4;
307 | MTL_ENABLE_DEBUG_INFO = NO;
308 | MTL_FAST_MATH = YES;
309 | SDKROOT = iphoneos;
310 | SWIFT_COMPILATION_MODE = wholemodule;
311 | SWIFT_OPTIMIZATION_LEVEL = "-O";
312 | VALIDATE_PRODUCT = YES;
313 | };
314 | name = Release;
315 | };
316 | D0163F412630C5180055FAC9 /* Debug */ = {
317 | isa = XCBuildConfiguration;
318 | buildSettings = {
319 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
320 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
321 | CODE_SIGN_STYLE = Automatic;
322 | DEVELOPMENT_TEAM = TCFDLZ395L;
323 | INFOPLIST_FILE = ViperExtensionTest/Info.plist;
324 | LD_RUNPATH_SEARCH_PATHS = (
325 | "$(inherited)",
326 | "@executable_path/Frameworks",
327 | );
328 | PRODUCT_BUNDLE_IDENTIFIER = com.cemal.ViperExtensionTest;
329 | PRODUCT_NAME = "$(TARGET_NAME)";
330 | SWIFT_VERSION = 5.0;
331 | TARGETED_DEVICE_FAMILY = "1,2";
332 | };
333 | name = Debug;
334 | };
335 | D0163F422630C5180055FAC9 /* Release */ = {
336 | isa = XCBuildConfiguration;
337 | buildSettings = {
338 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
339 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
340 | CODE_SIGN_STYLE = Automatic;
341 | DEVELOPMENT_TEAM = TCFDLZ395L;
342 | INFOPLIST_FILE = ViperExtensionTest/Info.plist;
343 | LD_RUNPATH_SEARCH_PATHS = (
344 | "$(inherited)",
345 | "@executable_path/Frameworks",
346 | );
347 | PRODUCT_BUNDLE_IDENTIFIER = com.cemal.ViperExtensionTest;
348 | PRODUCT_NAME = "$(TARGET_NAME)";
349 | SWIFT_VERSION = 5.0;
350 | TARGETED_DEVICE_FAMILY = "1,2";
351 | };
352 | name = Release;
353 | };
354 | /* End XCBuildConfiguration section */
355 |
356 | /* Begin XCConfigurationList section */
357 | D0163F272630C5150055FAC9 /* Build configuration list for PBXProject "ViperExtensionTest" */ = {
358 | isa = XCConfigurationList;
359 | buildConfigurations = (
360 | D0163F3E2630C5180055FAC9 /* Debug */,
361 | D0163F3F2630C5180055FAC9 /* Release */,
362 | );
363 | defaultConfigurationIsVisible = 0;
364 | defaultConfigurationName = Release;
365 | };
366 | D0163F402630C5180055FAC9 /* Build configuration list for PBXNativeTarget "ViperExtensionTest" */ = {
367 | isa = XCConfigurationList;
368 | buildConfigurations = (
369 | D0163F412630C5180055FAC9 /* Debug */,
370 | D0163F422630C5180055FAC9 /* Release */,
371 | );
372 | defaultConfigurationIsVisible = 0;
373 | defaultConfigurationName = Release;
374 | };
375 | /* End XCConfigurationList section */
376 | };
377 | rootObject = D0163F242630C5150055FAC9 /* Project object */;
378 | }
379 |
--------------------------------------------------------------------------------