File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 4
4
def wrapper (content ):
5
5
return """
6
6
platform :ios, '9.0'
7
+ inhibit_all_warnings!
7
8
use_frameworks!
8
9
plugin "cocoapods-binary"
9
10
@@ -98,7 +99,7 @@ def addDifferentNamePod():
98
99
import Lottie
99
100
class A {
100
101
let a: CGRect = [1,2,3,4]
101
- let a2 = LOTAnimationView .self
102
+ let a2 = AnimationView .self
102
103
let d = UIView().mas_top
103
104
}
104
105
""" )
@@ -119,7 +120,7 @@ def addSubPod():
119
120
import AFNetworking
120
121
class A {
121
122
let a: CGRect = [1,2,3,4]
122
- let a2 = LOTAnimationView .self
123
+ let a2 = AnimationView .self
123
124
let b = AFNetworkReachabilityManager()
124
125
let d = UIView().mas_top
125
126
}
Original file line number Diff line number Diff line change 2
2
set -e
3
3
4
4
build () {
5
- xcodebuild -workspace Binary.xcworkspace -scheme Binary ONLY_ACTIVE_ARCH=YES CODE_SIGN_IDENTITY=" " CODE_SIGNING_REQUIRED=NO -quiet || exit 1
6
- }
5
+ xcodebuild -workspace Binary.xcworkspace -scheme Binary ONLY_ACTIVE_ARCH=YES CODE_SIGN_IDENTITY=" " CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO -quiet || exit 1
6
+ }
7
7
8
8
rm -rf Pods
9
9
You can’t perform that action at this time.
0 commit comments