cocoapods-mix-frameworks 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +67 -0
- data/Gemfile.lock +2 -2
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Action/ActionViewController.swift +63 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Action/Base.lproj/MainInterface.storyboard +55 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Action/Info.plist +36 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo.xcodeproj/project.pbxproj +782 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo.xcworkspace/contents.xcworkspacedata +10 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo/AppDelegate.swift +48 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json +38 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo/Base.lproj/LaunchScreen.storyboard +27 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo/Base.lproj/Main.storyboard +26 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo/Info.plist +38 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Demo/ViewController.swift +25 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Framework/CocoaPods-Mix-Framework.h +19 -0
- data/example/CocoaPods-Mix-Demo/CocoaPods-Mix-Framework/Info.plist +24 -0
- data/example/CocoaPods-Mix-Demo/Podfile +16 -0
- data/example/CocoaPods-Mix-Demo/Podfile.lock +23 -0
- data/lib/cocoapods-mix-frameworks/gem_version.rb +1 -1
- data/lib/cocoapods-mix-frameworks/{lib/inject.rb → inject.rb} +7 -0
- data/lib/cocoapods-mix-frameworks/mix.rb +7 -1
- metadata +22 -4
- data/lib/cocoapods-mix-frameworks/lib/mix.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d4b46e28857806d9dac24c6b6433d2e308cb99a
|
4
|
+
data.tar.gz: d88ca34c7de66ee31ede2017997c0d1347808263
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a626233dcdce818d133d07cb579802b139d748865e9089df9e2ae3cd2a5ff7d6d6678aac87511765d58e9593e75b81a9cf8aa15d008a6b4b09c353ada532924e
|
7
|
+
data.tar.gz: bd9438967001acf793e358ed310fc77833d4914a3e723c33de9fe1be50513b790f80f9f1fd6e57f8b5af0a2b767d8194b4f72fa518d8881cb0bee1d8410bf23f
|
data/.gitignore
CHANGED
@@ -48,3 +48,70 @@ build-iPhoneSimulator/
|
|
48
48
|
|
49
49
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
50
|
.rvmrc
|
51
|
+
# Xcode
|
52
|
+
#
|
53
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
54
|
+
|
55
|
+
## Build generated
|
56
|
+
build/
|
57
|
+
DerivedData/
|
58
|
+
|
59
|
+
## Various settings
|
60
|
+
*.pbxuser
|
61
|
+
!default.pbxuser
|
62
|
+
*.mode1v3
|
63
|
+
!default.mode1v3
|
64
|
+
*.mode2v3
|
65
|
+
!default.mode2v3
|
66
|
+
*.perspectivev3
|
67
|
+
!default.perspectivev3
|
68
|
+
xcuserdata/
|
69
|
+
|
70
|
+
## Other
|
71
|
+
*.moved-aside
|
72
|
+
*.xccheckout
|
73
|
+
*.xcscmblueprint
|
74
|
+
|
75
|
+
## Obj-C/Swift specific
|
76
|
+
*.hmap
|
77
|
+
*.ipa
|
78
|
+
*.dSYM.zip
|
79
|
+
*.dSYM
|
80
|
+
|
81
|
+
## Playgrounds
|
82
|
+
timeline.xctimeline
|
83
|
+
playground.xcworkspace
|
84
|
+
|
85
|
+
# Swift Package Manager
|
86
|
+
#
|
87
|
+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
88
|
+
# Packages/
|
89
|
+
# Package.pins
|
90
|
+
.build/
|
91
|
+
|
92
|
+
# CocoaPods
|
93
|
+
#
|
94
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
95
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
96
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
97
|
+
#
|
98
|
+
Pods/
|
99
|
+
|
100
|
+
# Carthage
|
101
|
+
#
|
102
|
+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
103
|
+
# Carthage/Checkouts
|
104
|
+
|
105
|
+
Carthage/Build
|
106
|
+
|
107
|
+
# fastlane
|
108
|
+
#
|
109
|
+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
110
|
+
# screenshots whenever they are needed.
|
111
|
+
# For more information about the recommended setup visit:
|
112
|
+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
|
113
|
+
|
114
|
+
fastlane/report.xml
|
115
|
+
fastlane/Preview.html
|
116
|
+
fastlane/screenshots
|
117
|
+
fastlane/test_output
|
data/Gemfile.lock
CHANGED
@@ -0,0 +1,63 @@
|
|
1
|
+
//
|
2
|
+
// ActionViewController.swift
|
3
|
+
// CocoaPods-Mix-Action
|
4
|
+
//
|
5
|
+
// Created by Florent Vilmart on 17-05-09.
|
6
|
+
// Copyright © 2017 ampme. All rights reserved.
|
7
|
+
//
|
8
|
+
|
9
|
+
import UIKit
|
10
|
+
import MobileCoreServices
|
11
|
+
import Moya
|
12
|
+
|
13
|
+
class ActionViewController: UIViewController {
|
14
|
+
|
15
|
+
@IBOutlet weak var imageView: UIImageView!
|
16
|
+
|
17
|
+
override func viewDidLoad() {
|
18
|
+
super.viewDidLoad()
|
19
|
+
|
20
|
+
// Get the item[s] we're handling from the extension context.
|
21
|
+
|
22
|
+
// For example, look for an image and place it into an image view.
|
23
|
+
// Replace this with something appropriate for the type[s] your extension supports.
|
24
|
+
var imageFound = false
|
25
|
+
for item in self.extensionContext!.inputItems as! [NSExtensionItem] {
|
26
|
+
for provider in item.attachments! as! [NSItemProvider] {
|
27
|
+
if provider.hasItemConformingToTypeIdentifier(kUTTypeImage as String) {
|
28
|
+
// This is an image. We'll load it, then place it in our image view.
|
29
|
+
weak var weakImageView = self.imageView
|
30
|
+
provider.loadItem(forTypeIdentifier: kUTTypeImage as String, options: nil, completionHandler: { (imageURL, error) in
|
31
|
+
OperationQueue.main.addOperation {
|
32
|
+
if let strongImageView = weakImageView {
|
33
|
+
if let imageURL = imageURL as? URL {
|
34
|
+
strongImageView.image = UIImage(data: try! Data(contentsOf: imageURL))
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
})
|
39
|
+
|
40
|
+
imageFound = true
|
41
|
+
break
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
if (imageFound) {
|
46
|
+
// We only handle one image, so stop looking for more.
|
47
|
+
break
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
override func didReceiveMemoryWarning() {
|
53
|
+
super.didReceiveMemoryWarning()
|
54
|
+
// Dispose of any resources that can be recreated.
|
55
|
+
}
|
56
|
+
|
57
|
+
@IBAction func done() {
|
58
|
+
// Return any edited content to the host app.
|
59
|
+
// This template doesn't do anything, so we just echo the passed in items.
|
60
|
+
self.extensionContext!.completeRequest(returningItems: self.extensionContext!.inputItems, completionHandler: nil)
|
61
|
+
}
|
62
|
+
|
63
|
+
}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11134" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="ObA-dk-sSI">
|
3
|
+
<dependencies>
|
4
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11106"/>
|
5
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
6
|
+
</dependencies>
|
7
|
+
<scenes>
|
8
|
+
<!--Image-->
|
9
|
+
<scene sceneID="7MM-of-jgj">
|
10
|
+
<objects>
|
11
|
+
<viewController title="Image" id="ObA-dk-sSI" customClass="ActionViewController" customModuleProvider="target" sceneMemberID="viewController">
|
12
|
+
<layoutGuides>
|
13
|
+
<viewControllerLayoutGuide type="top" id="qkL-Od-lgU"/>
|
14
|
+
<viewControllerLayoutGuide type="bottom" id="n38-gi-rB5"/>
|
15
|
+
</layoutGuides>
|
16
|
+
<view key="view" contentMode="scaleToFill" id="zMn-AG-sqS">
|
17
|
+
<rect key="frame" x="0.0" y="0.0" width="320" height="528"/>
|
18
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
19
|
+
<subviews>
|
20
|
+
<navigationBar contentMode="scaleToFill" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" translatesAutoresizingMaskIntoConstraints="NO" id="NOA-Dm-cuz">
|
21
|
+
<items>
|
22
|
+
<navigationItem id="3HJ-uW-3hn">
|
23
|
+
<barButtonItem key="leftBarButtonItem" title="Done" style="done" id="WYi-yp-eM6">
|
24
|
+
<connections>
|
25
|
+
<action selector="done" destination="ObA-dk-sSI" id="Qdu-qn-U6V"/>
|
26
|
+
</connections>
|
27
|
+
</barButtonItem>
|
28
|
+
</navigationItem>
|
29
|
+
</items>
|
30
|
+
</navigationBar>
|
31
|
+
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="9ga-4F-77Z"/>
|
32
|
+
</subviews>
|
33
|
+
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
34
|
+
<constraints>
|
35
|
+
<constraint firstAttribute="trailing" secondItem="NOA-Dm-cuz" secondAttribute="trailing" id="A05-Pj-hrr"/>
|
36
|
+
<constraint firstItem="9ga-4F-77Z" firstAttribute="top" secondItem="NOA-Dm-cuz" secondAttribute="bottom" id="Fps-3D-QQW"/>
|
37
|
+
<constraint firstItem="NOA-Dm-cuz" firstAttribute="leading" secondItem="zMn-AG-sqS" secondAttribute="leading" id="HxO-8t-aoh"/>
|
38
|
+
<constraint firstAttribute="trailing" secondItem="9ga-4F-77Z" secondAttribute="trailing" id="Ozw-Hg-0yh"/>
|
39
|
+
<constraint firstItem="9ga-4F-77Z" firstAttribute="leading" secondItem="zMn-AG-sqS" secondAttribute="leading" id="XH5-ld-ONA"/>
|
40
|
+
<constraint firstItem="n38-gi-rB5" firstAttribute="top" secondItem="9ga-4F-77Z" secondAttribute="bottom" id="eQg-nn-Zy4"/>
|
41
|
+
<constraint firstItem="NOA-Dm-cuz" firstAttribute="top" secondItem="qkL-Od-lgU" secondAttribute="bottom" id="we0-1t-bgp"/>
|
42
|
+
</constraints>
|
43
|
+
</view>
|
44
|
+
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
45
|
+
<size key="freeformSize" width="320" height="528"/>
|
46
|
+
<connections>
|
47
|
+
<outlet property="imageView" destination="9ga-4F-77Z" id="5y6-5w-9QO"/>
|
48
|
+
<outlet property="view" destination="zMn-AG-sqS" id="Qma-de-2ek"/>
|
49
|
+
</connections>
|
50
|
+
</viewController>
|
51
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="X47-rx-isc" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
52
|
+
</objects>
|
53
|
+
</scene>
|
54
|
+
</scenes>
|
55
|
+
</document>
|
@@ -0,0 +1,36 @@
|
|
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>en</string>
|
7
|
+
<key>CFBundleDisplayName</key>
|
8
|
+
<string>CocoaPods-Mix-Action</string>
|
9
|
+
<key>CFBundleExecutable</key>
|
10
|
+
<string>$(EXECUTABLE_NAME)</string>
|
11
|
+
<key>CFBundleIdentifier</key>
|
12
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
14
|
+
<string>6.0</string>
|
15
|
+
<key>CFBundleName</key>
|
16
|
+
<string>$(PRODUCT_NAME)</string>
|
17
|
+
<key>CFBundlePackageType</key>
|
18
|
+
<string>XPC!</string>
|
19
|
+
<key>CFBundleShortVersionString</key>
|
20
|
+
<string>1.0</string>
|
21
|
+
<key>CFBundleVersion</key>
|
22
|
+
<string>1</string>
|
23
|
+
<key>NSExtension</key>
|
24
|
+
<dict>
|
25
|
+
<key>NSExtensionAttributes</key>
|
26
|
+
<dict>
|
27
|
+
<key>NSExtensionActivationRule</key>
|
28
|
+
<string>TRUEPREDICATE</string>
|
29
|
+
</dict>
|
30
|
+
<key>NSExtensionMainStoryboard</key>
|
31
|
+
<string>MainInterface</string>
|
32
|
+
<key>NSExtensionPointIdentifier</key>
|
33
|
+
<string>com.apple.ui-services</string>
|
34
|
+
</dict>
|
35
|
+
</dict>
|
36
|
+
</plist>
|
@@ -0,0 +1,782 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
2BF011AF1F5C027EE49561F6 /* Pods_CocoaPods_Mix_Framework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F47C03981626E8E4678E667B /* Pods_CocoaPods_Mix_Framework.framework */; };
|
11
|
+
40C2D94640585817D9C28598 /* libPods-CocoaPods-Mix-Demo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FBA092E2A077C3A365E00169 /* libPods-CocoaPods-Mix-Demo.a */; };
|
12
|
+
4A1423C41EC24BCB00CB4EE6 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1423C31EC24BCB00CB4EE6 /* AppDelegate.swift */; };
|
13
|
+
4A1423C61EC24BCB00CB4EE6 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1423C51EC24BCB00CB4EE6 /* ViewController.swift */; };
|
14
|
+
4A1423C91EC24BCB00CB4EE6 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4A1423C71EC24BCB00CB4EE6 /* Main.storyboard */; };
|
15
|
+
4A1423CB1EC24BCB00CB4EE6 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 4A1423CA1EC24BCB00CB4EE6 /* Assets.xcassets */; };
|
16
|
+
4A1423CE1EC24BCB00CB4EE6 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4A1423CC1EC24BCB00CB4EE6 /* LaunchScreen.storyboard */; };
|
17
|
+
4A1423DE1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A1423DC1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
18
|
+
4A1423E11EC24BE100CB4EE6 /* CPMixDemo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A1423DA1EC24BE100CB4EE6 /* CPMixDemo.framework */; };
|
19
|
+
4A1423E21EC24BE100CB4EE6 /* CPMixDemo.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 4A1423DA1EC24BE100CB4EE6 /* CPMixDemo.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
20
|
+
4A1423EE1EC24C2900CB4EE6 /* ActionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1423ED1EC24C2900CB4EE6 /* ActionViewController.swift */; };
|
21
|
+
4A1423F11EC24C2900CB4EE6 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4A1423EF1EC24C2900CB4EE6 /* MainInterface.storyboard */; };
|
22
|
+
4A1423F51EC24C2900CB4EE6 /* CocoaPods-Mix-Action.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 4A1423EB1EC24C2900CB4EE6 /* CocoaPods-Mix-Action.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
23
|
+
7E35D176B3567D5310C8E9E5 /* Pods_CocoaPods_Mix_Action.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E8274B047DE7A319D36CA891 /* Pods_CocoaPods_Mix_Action.framework */; };
|
24
|
+
/* End PBXBuildFile section */
|
25
|
+
|
26
|
+
/* Begin PBXContainerItemProxy section */
|
27
|
+
4A1423DF1EC24BE100CB4EE6 /* PBXContainerItemProxy */ = {
|
28
|
+
isa = PBXContainerItemProxy;
|
29
|
+
containerPortal = 4A1423B81EC24BCB00CB4EE6 /* Project object */;
|
30
|
+
proxyType = 1;
|
31
|
+
remoteGlobalIDString = 4A1423D91EC24BE100CB4EE6;
|
32
|
+
remoteInfo = "CocoaPods-Mix-Framework";
|
33
|
+
};
|
34
|
+
4A1423F31EC24C2900CB4EE6 /* PBXContainerItemProxy */ = {
|
35
|
+
isa = PBXContainerItemProxy;
|
36
|
+
containerPortal = 4A1423B81EC24BCB00CB4EE6 /* Project object */;
|
37
|
+
proxyType = 1;
|
38
|
+
remoteGlobalIDString = 4A1423EA1EC24C2900CB4EE6;
|
39
|
+
remoteInfo = "CocoaPods-Mix-Action";
|
40
|
+
};
|
41
|
+
4A1423FA1EC24CE800CB4EE6 /* PBXContainerItemProxy */ = {
|
42
|
+
isa = PBXContainerItemProxy;
|
43
|
+
containerPortal = 4A1423B81EC24BCB00CB4EE6 /* Project object */;
|
44
|
+
proxyType = 1;
|
45
|
+
remoteGlobalIDString = 4A1423D91EC24BE100CB4EE6;
|
46
|
+
remoteInfo = "CocoaPods-Mix-Framework";
|
47
|
+
};
|
48
|
+
/* End PBXContainerItemProxy section */
|
49
|
+
|
50
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
51
|
+
4A1423E61EC24BE100CB4EE6 /* Embed Frameworks */ = {
|
52
|
+
isa = PBXCopyFilesBuildPhase;
|
53
|
+
buildActionMask = 2147483647;
|
54
|
+
dstPath = "";
|
55
|
+
dstSubfolderSpec = 10;
|
56
|
+
files = (
|
57
|
+
4A1423E21EC24BE100CB4EE6 /* CPMixDemo.framework in Embed Frameworks */,
|
58
|
+
);
|
59
|
+
name = "Embed Frameworks";
|
60
|
+
runOnlyForDeploymentPostprocessing = 0;
|
61
|
+
};
|
62
|
+
4A1423F91EC24C2900CB4EE6 /* Embed App Extensions */ = {
|
63
|
+
isa = PBXCopyFilesBuildPhase;
|
64
|
+
buildActionMask = 2147483647;
|
65
|
+
dstPath = "";
|
66
|
+
dstSubfolderSpec = 13;
|
67
|
+
files = (
|
68
|
+
4A1423F51EC24C2900CB4EE6 /* CocoaPods-Mix-Action.appex in Embed App Extensions */,
|
69
|
+
);
|
70
|
+
name = "Embed App Extensions";
|
71
|
+
runOnlyForDeploymentPostprocessing = 0;
|
72
|
+
};
|
73
|
+
/* End PBXCopyFilesBuildPhase section */
|
74
|
+
|
75
|
+
/* Begin PBXFileReference section */
|
76
|
+
008FEA2B04E357024231FE78 /* Pods-CocoaPods-Mix-Framework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CocoaPods-Mix-Framework.release.xcconfig"; path = "Pods/Target Support Files/Pods-CocoaPods-Mix-Framework/Pods-CocoaPods-Mix-Framework.release.xcconfig"; sourceTree = "<group>"; };
|
77
|
+
143E93523A0164B648F18273 /* Pods-CocoaPods-Mix-Demo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CocoaPods-Mix-Demo.release.xcconfig"; path = "Pods/Target Support Files/Pods-CocoaPods-Mix-Demo/Pods-CocoaPods-Mix-Demo.release.xcconfig"; sourceTree = "<group>"; };
|
78
|
+
2DAB4108738F117D5111027A /* Pods-CocoaPods-Mix-Action.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CocoaPods-Mix-Action.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CocoaPods-Mix-Action/Pods-CocoaPods-Mix-Action.debug.xcconfig"; sourceTree = "<group>"; };
|
79
|
+
4A1423C01EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "CocoaPods-Mix-Demo.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
80
|
+
4A1423C31EC24BCB00CB4EE6 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
81
|
+
4A1423C51EC24BCB00CB4EE6 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
82
|
+
4A1423C81EC24BCB00CB4EE6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
83
|
+
4A1423CA1EC24BCB00CB4EE6 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
84
|
+
4A1423CD1EC24BCB00CB4EE6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
85
|
+
4A1423CF1EC24BCB00CB4EE6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
86
|
+
4A1423DA1EC24BE100CB4EE6 /* CPMixDemo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CPMixDemo.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
87
|
+
4A1423DC1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "CocoaPods-Mix-Framework.h"; sourceTree = "<group>"; };
|
88
|
+
4A1423DD1EC24BE100CB4EE6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
89
|
+
4A1423EB1EC24C2900CB4EE6 /* CocoaPods-Mix-Action.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "CocoaPods-Mix-Action.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
|
90
|
+
4A1423ED1EC24C2900CB4EE6 /* ActionViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionViewController.swift; sourceTree = "<group>"; };
|
91
|
+
4A1423F01EC24C2900CB4EE6 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/MainInterface.storyboard; sourceTree = "<group>"; };
|
92
|
+
4A1423F21EC24C2900CB4EE6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
93
|
+
6355E408F73A0159299A8C66 /* Pods-CocoaPods-Mix-Action.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CocoaPods-Mix-Action.release.xcconfig"; path = "Pods/Target Support Files/Pods-CocoaPods-Mix-Action/Pods-CocoaPods-Mix-Action.release.xcconfig"; sourceTree = "<group>"; };
|
94
|
+
AC5A9ECD90533FEAAEF7DDAD /* Pods-CocoaPods-Mix-Demo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CocoaPods-Mix-Demo.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CocoaPods-Mix-Demo/Pods-CocoaPods-Mix-Demo.debug.xcconfig"; sourceTree = "<group>"; };
|
95
|
+
DBDADBCD2A1CD865A9A63828 /* Pods-CocoaPods-Mix-Framework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CocoaPods-Mix-Framework.debug.xcconfig"; path = "Pods/Target Support Files/Pods-CocoaPods-Mix-Framework/Pods-CocoaPods-Mix-Framework.debug.xcconfig"; sourceTree = "<group>"; };
|
96
|
+
E8274B047DE7A319D36CA891 /* Pods_CocoaPods_Mix_Action.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CocoaPods_Mix_Action.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
97
|
+
F47C03981626E8E4678E667B /* Pods_CocoaPods_Mix_Framework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CocoaPods_Mix_Framework.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
98
|
+
FBA092E2A077C3A365E00169 /* libPods-CocoaPods-Mix-Demo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CocoaPods-Mix-Demo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
99
|
+
/* End PBXFileReference section */
|
100
|
+
|
101
|
+
/* Begin PBXFrameworksBuildPhase section */
|
102
|
+
4A1423BD1EC24BCB00CB4EE6 /* Frameworks */ = {
|
103
|
+
isa = PBXFrameworksBuildPhase;
|
104
|
+
buildActionMask = 2147483647;
|
105
|
+
files = (
|
106
|
+
4A1423E11EC24BE100CB4EE6 /* CPMixDemo.framework in Frameworks */,
|
107
|
+
40C2D94640585817D9C28598 /* libPods-CocoaPods-Mix-Demo.a in Frameworks */,
|
108
|
+
);
|
109
|
+
runOnlyForDeploymentPostprocessing = 0;
|
110
|
+
};
|
111
|
+
4A1423D61EC24BE100CB4EE6 /* Frameworks */ = {
|
112
|
+
isa = PBXFrameworksBuildPhase;
|
113
|
+
buildActionMask = 2147483647;
|
114
|
+
files = (
|
115
|
+
2BF011AF1F5C027EE49561F6 /* Pods_CocoaPods_Mix_Framework.framework in Frameworks */,
|
116
|
+
);
|
117
|
+
runOnlyForDeploymentPostprocessing = 0;
|
118
|
+
};
|
119
|
+
4A1423E81EC24C2900CB4EE6 /* Frameworks */ = {
|
120
|
+
isa = PBXFrameworksBuildPhase;
|
121
|
+
buildActionMask = 2147483647;
|
122
|
+
files = (
|
123
|
+
7E35D176B3567D5310C8E9E5 /* Pods_CocoaPods_Mix_Action.framework in Frameworks */,
|
124
|
+
);
|
125
|
+
runOnlyForDeploymentPostprocessing = 0;
|
126
|
+
};
|
127
|
+
/* End PBXFrameworksBuildPhase section */
|
128
|
+
|
129
|
+
/* Begin PBXGroup section */
|
130
|
+
4A1423B71EC24BCB00CB4EE6 = {
|
131
|
+
isa = PBXGroup;
|
132
|
+
children = (
|
133
|
+
4A1423C21EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo */,
|
134
|
+
4A1423DB1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework */,
|
135
|
+
4A1423EC1EC24C2900CB4EE6 /* CocoaPods-Mix-Action */,
|
136
|
+
4A1423C11EC24BCB00CB4EE6 /* Products */,
|
137
|
+
591F7C4E05B54BB6140804CE /* Pods */,
|
138
|
+
CD8C4E30A64A8465856E1C31 /* Frameworks */,
|
139
|
+
);
|
140
|
+
sourceTree = "<group>";
|
141
|
+
};
|
142
|
+
4A1423C11EC24BCB00CB4EE6 /* Products */ = {
|
143
|
+
isa = PBXGroup;
|
144
|
+
children = (
|
145
|
+
4A1423C01EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo.app */,
|
146
|
+
4A1423DA1EC24BE100CB4EE6 /* CPMixDemo.framework */,
|
147
|
+
4A1423EB1EC24C2900CB4EE6 /* CocoaPods-Mix-Action.appex */,
|
148
|
+
);
|
149
|
+
name = Products;
|
150
|
+
sourceTree = "<group>";
|
151
|
+
};
|
152
|
+
4A1423C21EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo */ = {
|
153
|
+
isa = PBXGroup;
|
154
|
+
children = (
|
155
|
+
4A1423C31EC24BCB00CB4EE6 /* AppDelegate.swift */,
|
156
|
+
4A1423C51EC24BCB00CB4EE6 /* ViewController.swift */,
|
157
|
+
4A1423C71EC24BCB00CB4EE6 /* Main.storyboard */,
|
158
|
+
4A1423CA1EC24BCB00CB4EE6 /* Assets.xcassets */,
|
159
|
+
4A1423CC1EC24BCB00CB4EE6 /* LaunchScreen.storyboard */,
|
160
|
+
4A1423CF1EC24BCB00CB4EE6 /* Info.plist */,
|
161
|
+
);
|
162
|
+
path = "CocoaPods-Mix-Demo";
|
163
|
+
sourceTree = "<group>";
|
164
|
+
};
|
165
|
+
4A1423DB1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework */ = {
|
166
|
+
isa = PBXGroup;
|
167
|
+
children = (
|
168
|
+
4A1423DC1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework.h */,
|
169
|
+
4A1423DD1EC24BE100CB4EE6 /* Info.plist */,
|
170
|
+
);
|
171
|
+
path = "CocoaPods-Mix-Framework";
|
172
|
+
sourceTree = "<group>";
|
173
|
+
};
|
174
|
+
4A1423EC1EC24C2900CB4EE6 /* CocoaPods-Mix-Action */ = {
|
175
|
+
isa = PBXGroup;
|
176
|
+
children = (
|
177
|
+
4A1423ED1EC24C2900CB4EE6 /* ActionViewController.swift */,
|
178
|
+
4A1423EF1EC24C2900CB4EE6 /* MainInterface.storyboard */,
|
179
|
+
4A1423F21EC24C2900CB4EE6 /* Info.plist */,
|
180
|
+
);
|
181
|
+
path = "CocoaPods-Mix-Action";
|
182
|
+
sourceTree = "<group>";
|
183
|
+
};
|
184
|
+
591F7C4E05B54BB6140804CE /* Pods */ = {
|
185
|
+
isa = PBXGroup;
|
186
|
+
children = (
|
187
|
+
2DAB4108738F117D5111027A /* Pods-CocoaPods-Mix-Action.debug.xcconfig */,
|
188
|
+
6355E408F73A0159299A8C66 /* Pods-CocoaPods-Mix-Action.release.xcconfig */,
|
189
|
+
AC5A9ECD90533FEAAEF7DDAD /* Pods-CocoaPods-Mix-Demo.debug.xcconfig */,
|
190
|
+
143E93523A0164B648F18273 /* Pods-CocoaPods-Mix-Demo.release.xcconfig */,
|
191
|
+
DBDADBCD2A1CD865A9A63828 /* Pods-CocoaPods-Mix-Framework.debug.xcconfig */,
|
192
|
+
008FEA2B04E357024231FE78 /* Pods-CocoaPods-Mix-Framework.release.xcconfig */,
|
193
|
+
);
|
194
|
+
name = Pods;
|
195
|
+
sourceTree = "<group>";
|
196
|
+
};
|
197
|
+
CD8C4E30A64A8465856E1C31 /* Frameworks */ = {
|
198
|
+
isa = PBXGroup;
|
199
|
+
children = (
|
200
|
+
FBA092E2A077C3A365E00169 /* libPods-CocoaPods-Mix-Demo.a */,
|
201
|
+
F47C03981626E8E4678E667B /* Pods_CocoaPods_Mix_Framework.framework */,
|
202
|
+
E8274B047DE7A319D36CA891 /* Pods_CocoaPods_Mix_Action.framework */,
|
203
|
+
);
|
204
|
+
name = Frameworks;
|
205
|
+
sourceTree = "<group>";
|
206
|
+
};
|
207
|
+
/* End PBXGroup section */
|
208
|
+
|
209
|
+
/* Begin PBXHeadersBuildPhase section */
|
210
|
+
4A1423D71EC24BE100CB4EE6 /* Headers */ = {
|
211
|
+
isa = PBXHeadersBuildPhase;
|
212
|
+
buildActionMask = 2147483647;
|
213
|
+
files = (
|
214
|
+
4A1423DE1EC24BE100CB4EE6 /* CocoaPods-Mix-Framework.h in Headers */,
|
215
|
+
);
|
216
|
+
runOnlyForDeploymentPostprocessing = 0;
|
217
|
+
};
|
218
|
+
/* End PBXHeadersBuildPhase section */
|
219
|
+
|
220
|
+
/* Begin PBXNativeTarget section */
|
221
|
+
4A1423BF1EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo */ = {
|
222
|
+
isa = PBXNativeTarget;
|
223
|
+
buildConfigurationList = 4A1423D21EC24BCB00CB4EE6 /* Build configuration list for PBXNativeTarget "CocoaPods-Mix-Demo" */;
|
224
|
+
buildPhases = (
|
225
|
+
2591D366A576454694BB6146 /* [CP] Check Pods Manifest.lock */,
|
226
|
+
4A1423BC1EC24BCB00CB4EE6 /* Sources */,
|
227
|
+
4A1423BD1EC24BCB00CB4EE6 /* Frameworks */,
|
228
|
+
4A1423BE1EC24BCB00CB4EE6 /* Resources */,
|
229
|
+
4A1423E61EC24BE100CB4EE6 /* Embed Frameworks */,
|
230
|
+
4A1423F91EC24C2900CB4EE6 /* Embed App Extensions */,
|
231
|
+
8F628DDD0CDB92723A7AF5B4 /* [CP] Embed Pods Frameworks */,
|
232
|
+
E75C60FA196446858A7E9163 /* [CP] Copy Pods Resources */,
|
233
|
+
);
|
234
|
+
buildRules = (
|
235
|
+
);
|
236
|
+
dependencies = (
|
237
|
+
4A1423E01EC24BE100CB4EE6 /* PBXTargetDependency */,
|
238
|
+
4A1423F41EC24C2900CB4EE6 /* PBXTargetDependency */,
|
239
|
+
);
|
240
|
+
name = "CocoaPods-Mix-Demo";
|
241
|
+
productName = "CocoaPods-Mix-Demo";
|
242
|
+
productReference = 4A1423C01EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo.app */;
|
243
|
+
productType = "com.apple.product-type.application";
|
244
|
+
};
|
245
|
+
4A1423D91EC24BE100CB4EE6 /* CocoaPods-Mix-Framework */ = {
|
246
|
+
isa = PBXNativeTarget;
|
247
|
+
buildConfigurationList = 4A1423E31EC24BE100CB4EE6 /* Build configuration list for PBXNativeTarget "CocoaPods-Mix-Framework" */;
|
248
|
+
buildPhases = (
|
249
|
+
4026373B85A58C6296CF08A5 /* [CP] Check Pods Manifest.lock */,
|
250
|
+
4A1423D51EC24BE100CB4EE6 /* Sources */,
|
251
|
+
4A1423D61EC24BE100CB4EE6 /* Frameworks */,
|
252
|
+
4A1423D71EC24BE100CB4EE6 /* Headers */,
|
253
|
+
4A1423D81EC24BE100CB4EE6 /* Resources */,
|
254
|
+
B92B77853965782468FEFE62 /* [CP] Copy Pods Resources */,
|
255
|
+
);
|
256
|
+
buildRules = (
|
257
|
+
);
|
258
|
+
dependencies = (
|
259
|
+
);
|
260
|
+
name = "CocoaPods-Mix-Framework";
|
261
|
+
productName = "CocoaPods-Mix-Framework";
|
262
|
+
productReference = 4A1423DA1EC24BE100CB4EE6 /* CPMixDemo.framework */;
|
263
|
+
productType = "com.apple.product-type.framework";
|
264
|
+
};
|
265
|
+
4A1423EA1EC24C2900CB4EE6 /* CocoaPods-Mix-Action */ = {
|
266
|
+
isa = PBXNativeTarget;
|
267
|
+
buildConfigurationList = 4A1423F61EC24C2900CB4EE6 /* Build configuration list for PBXNativeTarget "CocoaPods-Mix-Action" */;
|
268
|
+
buildPhases = (
|
269
|
+
C33B6CE6841457C5437D4DC9 /* [CP] Check Pods Manifest.lock */,
|
270
|
+
4A1423E71EC24C2900CB4EE6 /* Sources */,
|
271
|
+
4A1423E81EC24C2900CB4EE6 /* Frameworks */,
|
272
|
+
4A1423E91EC24C2900CB4EE6 /* Resources */,
|
273
|
+
16D5E415633DFC5664CFC97A /* [CP] Copy Pods Resources */,
|
274
|
+
);
|
275
|
+
buildRules = (
|
276
|
+
);
|
277
|
+
dependencies = (
|
278
|
+
4A1423FB1EC24CE800CB4EE6 /* PBXTargetDependency */,
|
279
|
+
);
|
280
|
+
name = "CocoaPods-Mix-Action";
|
281
|
+
productName = "CocoaPods-Mix-Action";
|
282
|
+
productReference = 4A1423EB1EC24C2900CB4EE6 /* CocoaPods-Mix-Action.appex */;
|
283
|
+
productType = "com.apple.product-type.app-extension";
|
284
|
+
};
|
285
|
+
/* End PBXNativeTarget section */
|
286
|
+
|
287
|
+
/* Begin PBXProject section */
|
288
|
+
4A1423B81EC24BCB00CB4EE6 /* Project object */ = {
|
289
|
+
isa = PBXProject;
|
290
|
+
attributes = {
|
291
|
+
LastSwiftUpdateCheck = 0830;
|
292
|
+
LastUpgradeCheck = 0830;
|
293
|
+
ORGANIZATIONNAME = ampme;
|
294
|
+
TargetAttributes = {
|
295
|
+
4A1423BF1EC24BCB00CB4EE6 = {
|
296
|
+
CreatedOnToolsVersion = 8.3.2;
|
297
|
+
DevelopmentTeam = 563GTK3Y47;
|
298
|
+
ProvisioningStyle = Automatic;
|
299
|
+
};
|
300
|
+
4A1423D91EC24BE100CB4EE6 = {
|
301
|
+
CreatedOnToolsVersion = 8.3.2;
|
302
|
+
DevelopmentTeam = 563GTK3Y47;
|
303
|
+
ProvisioningStyle = Automatic;
|
304
|
+
};
|
305
|
+
4A1423EA1EC24C2900CB4EE6 = {
|
306
|
+
CreatedOnToolsVersion = 8.3.2;
|
307
|
+
DevelopmentTeam = 563GTK3Y47;
|
308
|
+
ProvisioningStyle = Automatic;
|
309
|
+
};
|
310
|
+
};
|
311
|
+
};
|
312
|
+
buildConfigurationList = 4A1423BB1EC24BCB00CB4EE6 /* Build configuration list for PBXProject "CocoaPods-Mix-Demo" */;
|
313
|
+
compatibilityVersion = "Xcode 3.2";
|
314
|
+
developmentRegion = English;
|
315
|
+
hasScannedForEncodings = 0;
|
316
|
+
knownRegions = (
|
317
|
+
en,
|
318
|
+
Base,
|
319
|
+
);
|
320
|
+
mainGroup = 4A1423B71EC24BCB00CB4EE6;
|
321
|
+
productRefGroup = 4A1423C11EC24BCB00CB4EE6 /* Products */;
|
322
|
+
projectDirPath = "";
|
323
|
+
projectRoot = "";
|
324
|
+
targets = (
|
325
|
+
4A1423BF1EC24BCB00CB4EE6 /* CocoaPods-Mix-Demo */,
|
326
|
+
4A1423D91EC24BE100CB4EE6 /* CocoaPods-Mix-Framework */,
|
327
|
+
4A1423EA1EC24C2900CB4EE6 /* CocoaPods-Mix-Action */,
|
328
|
+
);
|
329
|
+
};
|
330
|
+
/* End PBXProject section */
|
331
|
+
|
332
|
+
/* Begin PBXResourcesBuildPhase section */
|
333
|
+
4A1423BE1EC24BCB00CB4EE6 /* Resources */ = {
|
334
|
+
isa = PBXResourcesBuildPhase;
|
335
|
+
buildActionMask = 2147483647;
|
336
|
+
files = (
|
337
|
+
4A1423CE1EC24BCB00CB4EE6 /* LaunchScreen.storyboard in Resources */,
|
338
|
+
4A1423CB1EC24BCB00CB4EE6 /* Assets.xcassets in Resources */,
|
339
|
+
4A1423C91EC24BCB00CB4EE6 /* Main.storyboard in Resources */,
|
340
|
+
);
|
341
|
+
runOnlyForDeploymentPostprocessing = 0;
|
342
|
+
};
|
343
|
+
4A1423D81EC24BE100CB4EE6 /* Resources */ = {
|
344
|
+
isa = PBXResourcesBuildPhase;
|
345
|
+
buildActionMask = 2147483647;
|
346
|
+
files = (
|
347
|
+
);
|
348
|
+
runOnlyForDeploymentPostprocessing = 0;
|
349
|
+
};
|
350
|
+
4A1423E91EC24C2900CB4EE6 /* Resources */ = {
|
351
|
+
isa = PBXResourcesBuildPhase;
|
352
|
+
buildActionMask = 2147483647;
|
353
|
+
files = (
|
354
|
+
4A1423F11EC24C2900CB4EE6 /* MainInterface.storyboard in Resources */,
|
355
|
+
);
|
356
|
+
runOnlyForDeploymentPostprocessing = 0;
|
357
|
+
};
|
358
|
+
/* End PBXResourcesBuildPhase section */
|
359
|
+
|
360
|
+
/* Begin PBXShellScriptBuildPhase section */
|
361
|
+
16D5E415633DFC5664CFC97A /* [CP] Copy Pods Resources */ = {
|
362
|
+
isa = PBXShellScriptBuildPhase;
|
363
|
+
buildActionMask = 2147483647;
|
364
|
+
files = (
|
365
|
+
);
|
366
|
+
inputPaths = (
|
367
|
+
);
|
368
|
+
name = "[CP] Copy Pods Resources";
|
369
|
+
outputPaths = (
|
370
|
+
);
|
371
|
+
runOnlyForDeploymentPostprocessing = 0;
|
372
|
+
shellPath = /bin/sh;
|
373
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CocoaPods-Mix-Action/Pods-CocoaPods-Mix-Action-resources.sh\"\n";
|
374
|
+
showEnvVarsInLog = 0;
|
375
|
+
};
|
376
|
+
2591D366A576454694BB6146 /* [CP] Check Pods Manifest.lock */ = {
|
377
|
+
isa = PBXShellScriptBuildPhase;
|
378
|
+
buildActionMask = 2147483647;
|
379
|
+
files = (
|
380
|
+
);
|
381
|
+
inputPaths = (
|
382
|
+
);
|
383
|
+
name = "[CP] Check Pods Manifest.lock";
|
384
|
+
outputPaths = (
|
385
|
+
);
|
386
|
+
runOnlyForDeploymentPostprocessing = 0;
|
387
|
+
shellPath = /bin/sh;
|
388
|
+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
|
389
|
+
showEnvVarsInLog = 0;
|
390
|
+
};
|
391
|
+
4026373B85A58C6296CF08A5 /* [CP] Check Pods Manifest.lock */ = {
|
392
|
+
isa = PBXShellScriptBuildPhase;
|
393
|
+
buildActionMask = 2147483647;
|
394
|
+
files = (
|
395
|
+
);
|
396
|
+
inputPaths = (
|
397
|
+
);
|
398
|
+
name = "[CP] Check Pods Manifest.lock";
|
399
|
+
outputPaths = (
|
400
|
+
);
|
401
|
+
runOnlyForDeploymentPostprocessing = 0;
|
402
|
+
shellPath = /bin/sh;
|
403
|
+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
|
404
|
+
showEnvVarsInLog = 0;
|
405
|
+
};
|
406
|
+
8F628DDD0CDB92723A7AF5B4 /* [CP] Embed Pods Frameworks */ = {
|
407
|
+
isa = PBXShellScriptBuildPhase;
|
408
|
+
buildActionMask = 2147483647;
|
409
|
+
files = (
|
410
|
+
);
|
411
|
+
inputPaths = (
|
412
|
+
);
|
413
|
+
name = "[CP] Embed Pods Frameworks";
|
414
|
+
outputPaths = (
|
415
|
+
);
|
416
|
+
runOnlyForDeploymentPostprocessing = 0;
|
417
|
+
shellPath = /bin/sh;
|
418
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CocoaPods-Mix-Demo/Pods-CocoaPods-Mix-Demo-frameworks.sh\"\n";
|
419
|
+
showEnvVarsInLog = 0;
|
420
|
+
};
|
421
|
+
B92B77853965782468FEFE62 /* [CP] Copy Pods Resources */ = {
|
422
|
+
isa = PBXShellScriptBuildPhase;
|
423
|
+
buildActionMask = 2147483647;
|
424
|
+
files = (
|
425
|
+
);
|
426
|
+
inputPaths = (
|
427
|
+
);
|
428
|
+
name = "[CP] Copy Pods Resources";
|
429
|
+
outputPaths = (
|
430
|
+
);
|
431
|
+
runOnlyForDeploymentPostprocessing = 0;
|
432
|
+
shellPath = /bin/sh;
|
433
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CocoaPods-Mix-Framework/Pods-CocoaPods-Mix-Framework-resources.sh\"\n";
|
434
|
+
showEnvVarsInLog = 0;
|
435
|
+
};
|
436
|
+
C33B6CE6841457C5437D4DC9 /* [CP] Check Pods Manifest.lock */ = {
|
437
|
+
isa = PBXShellScriptBuildPhase;
|
438
|
+
buildActionMask = 2147483647;
|
439
|
+
files = (
|
440
|
+
);
|
441
|
+
inputPaths = (
|
442
|
+
);
|
443
|
+
name = "[CP] Check Pods Manifest.lock";
|
444
|
+
outputPaths = (
|
445
|
+
);
|
446
|
+
runOnlyForDeploymentPostprocessing = 0;
|
447
|
+
shellPath = /bin/sh;
|
448
|
+
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
|
449
|
+
showEnvVarsInLog = 0;
|
450
|
+
};
|
451
|
+
E75C60FA196446858A7E9163 /* [CP] Copy Pods Resources */ = {
|
452
|
+
isa = PBXShellScriptBuildPhase;
|
453
|
+
buildActionMask = 2147483647;
|
454
|
+
files = (
|
455
|
+
);
|
456
|
+
inputPaths = (
|
457
|
+
);
|
458
|
+
name = "[CP] Copy Pods Resources";
|
459
|
+
outputPaths = (
|
460
|
+
);
|
461
|
+
runOnlyForDeploymentPostprocessing = 0;
|
462
|
+
shellPath = /bin/sh;
|
463
|
+
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-CocoaPods-Mix-Demo/Pods-CocoaPods-Mix-Demo-resources.sh\"\n";
|
464
|
+
showEnvVarsInLog = 0;
|
465
|
+
};
|
466
|
+
/* End PBXShellScriptBuildPhase section */
|
467
|
+
|
468
|
+
/* Begin PBXSourcesBuildPhase section */
|
469
|
+
4A1423BC1EC24BCB00CB4EE6 /* Sources */ = {
|
470
|
+
isa = PBXSourcesBuildPhase;
|
471
|
+
buildActionMask = 2147483647;
|
472
|
+
files = (
|
473
|
+
4A1423C61EC24BCB00CB4EE6 /* ViewController.swift in Sources */,
|
474
|
+
4A1423C41EC24BCB00CB4EE6 /* AppDelegate.swift in Sources */,
|
475
|
+
);
|
476
|
+
runOnlyForDeploymentPostprocessing = 0;
|
477
|
+
};
|
478
|
+
4A1423D51EC24BE100CB4EE6 /* Sources */ = {
|
479
|
+
isa = PBXSourcesBuildPhase;
|
480
|
+
buildActionMask = 2147483647;
|
481
|
+
files = (
|
482
|
+
);
|
483
|
+
runOnlyForDeploymentPostprocessing = 0;
|
484
|
+
};
|
485
|
+
4A1423E71EC24C2900CB4EE6 /* Sources */ = {
|
486
|
+
isa = PBXSourcesBuildPhase;
|
487
|
+
buildActionMask = 2147483647;
|
488
|
+
files = (
|
489
|
+
4A1423EE1EC24C2900CB4EE6 /* ActionViewController.swift in Sources */,
|
490
|
+
);
|
491
|
+
runOnlyForDeploymentPostprocessing = 0;
|
492
|
+
};
|
493
|
+
/* End PBXSourcesBuildPhase section */
|
494
|
+
|
495
|
+
/* Begin PBXTargetDependency section */
|
496
|
+
4A1423E01EC24BE100CB4EE6 /* PBXTargetDependency */ = {
|
497
|
+
isa = PBXTargetDependency;
|
498
|
+
target = 4A1423D91EC24BE100CB4EE6 /* CocoaPods-Mix-Framework */;
|
499
|
+
targetProxy = 4A1423DF1EC24BE100CB4EE6 /* PBXContainerItemProxy */;
|
500
|
+
};
|
501
|
+
4A1423F41EC24C2900CB4EE6 /* PBXTargetDependency */ = {
|
502
|
+
isa = PBXTargetDependency;
|
503
|
+
target = 4A1423EA1EC24C2900CB4EE6 /* CocoaPods-Mix-Action */;
|
504
|
+
targetProxy = 4A1423F31EC24C2900CB4EE6 /* PBXContainerItemProxy */;
|
505
|
+
};
|
506
|
+
4A1423FB1EC24CE800CB4EE6 /* PBXTargetDependency */ = {
|
507
|
+
isa = PBXTargetDependency;
|
508
|
+
target = 4A1423D91EC24BE100CB4EE6 /* CocoaPods-Mix-Framework */;
|
509
|
+
targetProxy = 4A1423FA1EC24CE800CB4EE6 /* PBXContainerItemProxy */;
|
510
|
+
};
|
511
|
+
/* End PBXTargetDependency section */
|
512
|
+
|
513
|
+
/* Begin PBXVariantGroup section */
|
514
|
+
4A1423C71EC24BCB00CB4EE6 /* Main.storyboard */ = {
|
515
|
+
isa = PBXVariantGroup;
|
516
|
+
children = (
|
517
|
+
4A1423C81EC24BCB00CB4EE6 /* Base */,
|
518
|
+
);
|
519
|
+
name = Main.storyboard;
|
520
|
+
sourceTree = "<group>";
|
521
|
+
};
|
522
|
+
4A1423CC1EC24BCB00CB4EE6 /* LaunchScreen.storyboard */ = {
|
523
|
+
isa = PBXVariantGroup;
|
524
|
+
children = (
|
525
|
+
4A1423CD1EC24BCB00CB4EE6 /* Base */,
|
526
|
+
);
|
527
|
+
name = LaunchScreen.storyboard;
|
528
|
+
sourceTree = "<group>";
|
529
|
+
};
|
530
|
+
4A1423EF1EC24C2900CB4EE6 /* MainInterface.storyboard */ = {
|
531
|
+
isa = PBXVariantGroup;
|
532
|
+
children = (
|
533
|
+
4A1423F01EC24C2900CB4EE6 /* Base */,
|
534
|
+
);
|
535
|
+
name = MainInterface.storyboard;
|
536
|
+
sourceTree = "<group>";
|
537
|
+
};
|
538
|
+
/* End PBXVariantGroup section */
|
539
|
+
|
540
|
+
/* Begin XCBuildConfiguration section */
|
541
|
+
4A1423D01EC24BCB00CB4EE6 /* Debug */ = {
|
542
|
+
isa = XCBuildConfiguration;
|
543
|
+
buildSettings = {
|
544
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
545
|
+
CLANG_ANALYZER_NONNULL = YES;
|
546
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
547
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
548
|
+
CLANG_CXX_LIBRARY = "libc++";
|
549
|
+
CLANG_ENABLE_MODULES = YES;
|
550
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
551
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
552
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
553
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
554
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
555
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
556
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
557
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
558
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
559
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
560
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
561
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
562
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
563
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
564
|
+
COPY_PHASE_STRIP = NO;
|
565
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
566
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
567
|
+
ENABLE_TESTABILITY = YES;
|
568
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
569
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
570
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
571
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
572
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
573
|
+
"DEBUG=1",
|
574
|
+
"$(inherited)",
|
575
|
+
);
|
576
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
577
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
578
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
579
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
580
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
581
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
582
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
|
583
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
584
|
+
ONLY_ACTIVE_ARCH = YES;
|
585
|
+
SDKROOT = iphoneos;
|
586
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
587
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
588
|
+
};
|
589
|
+
name = Debug;
|
590
|
+
};
|
591
|
+
4A1423D11EC24BCB00CB4EE6 /* Release */ = {
|
592
|
+
isa = XCBuildConfiguration;
|
593
|
+
buildSettings = {
|
594
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
595
|
+
CLANG_ANALYZER_NONNULL = YES;
|
596
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
597
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
598
|
+
CLANG_CXX_LIBRARY = "libc++";
|
599
|
+
CLANG_ENABLE_MODULES = YES;
|
600
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
601
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
602
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
603
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
604
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
605
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
606
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
607
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
608
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
609
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
610
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
611
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
612
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
613
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
614
|
+
COPY_PHASE_STRIP = NO;
|
615
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
616
|
+
ENABLE_NS_ASSERTIONS = NO;
|
617
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
618
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
619
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
620
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
621
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
622
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
623
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
624
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
625
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
626
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
|
627
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
628
|
+
SDKROOT = iphoneos;
|
629
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
630
|
+
VALIDATE_PRODUCT = YES;
|
631
|
+
};
|
632
|
+
name = Release;
|
633
|
+
};
|
634
|
+
4A1423D31EC24BCB00CB4EE6 /* Debug */ = {
|
635
|
+
isa = XCBuildConfiguration;
|
636
|
+
baseConfigurationReference = AC5A9ECD90533FEAAEF7DDAD /* Pods-CocoaPods-Mix-Demo.debug.xcconfig */;
|
637
|
+
buildSettings = {
|
638
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
639
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
640
|
+
DEVELOPMENT_TEAM = 563GTK3Y47;
|
641
|
+
INFOPLIST_FILE = "CocoaPods-Mix-Demo/Info.plist";
|
642
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
643
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.amp.CocoaPods-Mix-Demo";
|
644
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
645
|
+
SWIFT_VERSION = 3.0;
|
646
|
+
};
|
647
|
+
name = Debug;
|
648
|
+
};
|
649
|
+
4A1423D41EC24BCB00CB4EE6 /* Release */ = {
|
650
|
+
isa = XCBuildConfiguration;
|
651
|
+
baseConfigurationReference = 143E93523A0164B648F18273 /* Pods-CocoaPods-Mix-Demo.release.xcconfig */;
|
652
|
+
buildSettings = {
|
653
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
654
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
655
|
+
DEVELOPMENT_TEAM = 563GTK3Y47;
|
656
|
+
INFOPLIST_FILE = "CocoaPods-Mix-Demo/Info.plist";
|
657
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
658
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.amp.CocoaPods-Mix-Demo";
|
659
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
660
|
+
SWIFT_VERSION = 3.0;
|
661
|
+
};
|
662
|
+
name = Release;
|
663
|
+
};
|
664
|
+
4A1423E41EC24BE100CB4EE6 /* Debug */ = {
|
665
|
+
isa = XCBuildConfiguration;
|
666
|
+
baseConfigurationReference = DBDADBCD2A1CD865A9A63828 /* Pods-CocoaPods-Mix-Framework.debug.xcconfig */;
|
667
|
+
buildSettings = {
|
668
|
+
CODE_SIGN_IDENTITY = "";
|
669
|
+
CURRENT_PROJECT_VERSION = 1;
|
670
|
+
DEFINES_MODULE = YES;
|
671
|
+
DEVELOPMENT_TEAM = 563GTK3Y47;
|
672
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
673
|
+
DYLIB_CURRENT_VERSION = 1;
|
674
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
675
|
+
INFOPLIST_FILE = "CocoaPods-Mix-Framework/Info.plist";
|
676
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
677
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
678
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.amp.CocoaPods-Mix-Framework";
|
679
|
+
PRODUCT_NAME = CPMixDemo;
|
680
|
+
SKIP_INSTALL = YES;
|
681
|
+
SWIFT_VERSION = 3.0;
|
682
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
683
|
+
VERSIONING_SYSTEM = "apple-generic";
|
684
|
+
VERSION_INFO_PREFIX = "";
|
685
|
+
};
|
686
|
+
name = Debug;
|
687
|
+
};
|
688
|
+
4A1423E51EC24BE100CB4EE6 /* Release */ = {
|
689
|
+
isa = XCBuildConfiguration;
|
690
|
+
baseConfigurationReference = 008FEA2B04E357024231FE78 /* Pods-CocoaPods-Mix-Framework.release.xcconfig */;
|
691
|
+
buildSettings = {
|
692
|
+
CODE_SIGN_IDENTITY = "";
|
693
|
+
CURRENT_PROJECT_VERSION = 1;
|
694
|
+
DEFINES_MODULE = YES;
|
695
|
+
DEVELOPMENT_TEAM = 563GTK3Y47;
|
696
|
+
DYLIB_COMPATIBILITY_VERSION = 1;
|
697
|
+
DYLIB_CURRENT_VERSION = 1;
|
698
|
+
DYLIB_INSTALL_NAME_BASE = "@rpath";
|
699
|
+
INFOPLIST_FILE = "CocoaPods-Mix-Framework/Info.plist";
|
700
|
+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
|
701
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
702
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.amp.CocoaPods-Mix-Framework";
|
703
|
+
PRODUCT_NAME = CPMixDemo;
|
704
|
+
SKIP_INSTALL = YES;
|
705
|
+
SWIFT_VERSION = 3.0;
|
706
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
707
|
+
VERSIONING_SYSTEM = "apple-generic";
|
708
|
+
VERSION_INFO_PREFIX = "";
|
709
|
+
};
|
710
|
+
name = Release;
|
711
|
+
};
|
712
|
+
4A1423F71EC24C2900CB4EE6 /* Debug */ = {
|
713
|
+
isa = XCBuildConfiguration;
|
714
|
+
baseConfigurationReference = 2DAB4108738F117D5111027A /* Pods-CocoaPods-Mix-Action.debug.xcconfig */;
|
715
|
+
buildSettings = {
|
716
|
+
DEVELOPMENT_TEAM = 563GTK3Y47;
|
717
|
+
INFOPLIST_FILE = "CocoaPods-Mix-Action/Info.plist";
|
718
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
|
719
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.amp.CocoaPods-Mix-Demo.CocoaPods-Mix-Action";
|
720
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
721
|
+
SKIP_INSTALL = YES;
|
722
|
+
SWIFT_VERSION = 3.0;
|
723
|
+
};
|
724
|
+
name = Debug;
|
725
|
+
};
|
726
|
+
4A1423F81EC24C2900CB4EE6 /* Release */ = {
|
727
|
+
isa = XCBuildConfiguration;
|
728
|
+
baseConfigurationReference = 6355E408F73A0159299A8C66 /* Pods-CocoaPods-Mix-Action.release.xcconfig */;
|
729
|
+
buildSettings = {
|
730
|
+
DEVELOPMENT_TEAM = 563GTK3Y47;
|
731
|
+
INFOPLIST_FILE = "CocoaPods-Mix-Action/Info.plist";
|
732
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
|
733
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.amp.CocoaPods-Mix-Demo.CocoaPods-Mix-Action";
|
734
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
735
|
+
SKIP_INSTALL = YES;
|
736
|
+
SWIFT_VERSION = 3.0;
|
737
|
+
};
|
738
|
+
name = Release;
|
739
|
+
};
|
740
|
+
/* End XCBuildConfiguration section */
|
741
|
+
|
742
|
+
/* Begin XCConfigurationList section */
|
743
|
+
4A1423BB1EC24BCB00CB4EE6 /* Build configuration list for PBXProject "CocoaPods-Mix-Demo" */ = {
|
744
|
+
isa = XCConfigurationList;
|
745
|
+
buildConfigurations = (
|
746
|
+
4A1423D01EC24BCB00CB4EE6 /* Debug */,
|
747
|
+
4A1423D11EC24BCB00CB4EE6 /* Release */,
|
748
|
+
);
|
749
|
+
defaultConfigurationIsVisible = 0;
|
750
|
+
defaultConfigurationName = Release;
|
751
|
+
};
|
752
|
+
4A1423D21EC24BCB00CB4EE6 /* Build configuration list for PBXNativeTarget "CocoaPods-Mix-Demo" */ = {
|
753
|
+
isa = XCConfigurationList;
|
754
|
+
buildConfigurations = (
|
755
|
+
4A1423D31EC24BCB00CB4EE6 /* Debug */,
|
756
|
+
4A1423D41EC24BCB00CB4EE6 /* Release */,
|
757
|
+
);
|
758
|
+
defaultConfigurationIsVisible = 0;
|
759
|
+
defaultConfigurationName = Release;
|
760
|
+
};
|
761
|
+
4A1423E31EC24BE100CB4EE6 /* Build configuration list for PBXNativeTarget "CocoaPods-Mix-Framework" */ = {
|
762
|
+
isa = XCConfigurationList;
|
763
|
+
buildConfigurations = (
|
764
|
+
4A1423E41EC24BE100CB4EE6 /* Debug */,
|
765
|
+
4A1423E51EC24BE100CB4EE6 /* Release */,
|
766
|
+
);
|
767
|
+
defaultConfigurationIsVisible = 0;
|
768
|
+
defaultConfigurationName = Release;
|
769
|
+
};
|
770
|
+
4A1423F61EC24C2900CB4EE6 /* Build configuration list for PBXNativeTarget "CocoaPods-Mix-Action" */ = {
|
771
|
+
isa = XCConfigurationList;
|
772
|
+
buildConfigurations = (
|
773
|
+
4A1423F71EC24C2900CB4EE6 /* Debug */,
|
774
|
+
4A1423F81EC24C2900CB4EE6 /* Release */,
|
775
|
+
);
|
776
|
+
defaultConfigurationIsVisible = 0;
|
777
|
+
defaultConfigurationName = Release;
|
778
|
+
};
|
779
|
+
/* End XCConfigurationList section */
|
780
|
+
};
|
781
|
+
rootObject = 4A1423B81EC24BCB00CB4EE6 /* Project object */;
|
782
|
+
}
|