Commit ee9a81e 1 parent baac2e3 commit ee9a81e Copy full SHA for ee9a81e
File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ NS_ASSUME_NONNULL_BEGIN
92
92
/* *
93
93
* The permalink URL for this Tweet.
94
94
*
95
- * Suitable for loading in a `UIWebView`, ` WKWebView` or passing to Safari:
95
+ * Suitable for loading in a `WKWebView` or passing to Safari:
96
96
*
97
97
* `[[UIApplication sharedApplication] openURL:tweet.permalink];`
98
98
*/
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "TwitterKit5"
3
- s . version = "5.1 .0"
3
+ s . version = "5.2 .0"
4
4
s . summary = "Increase user engagement and app growth."
5
5
s . homepage = "https://github.com/touren/twitter-kit-ios"
6
6
s . documentation_url = "https://github.com/touren/twitter-kit-ios/wiki"
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ xcodebuild \
11
11
CONFIGURATION_BUILD_DIR=./iphonesimulator \
12
12
clean build
13
13
14
+ # # From: https://developer.apple.com/library/archive/qa/qa1940/_index.html
15
+ # If code signing fails with the error "resource fork, Finder information, or similar detritus not allowed."
16
+ # e.g. /usr/bin/codesign --force --sign - --timestamp=none $(pwd)/TwitterCore/iphonesimulator/TwitterCore.framework
17
+ # Try:
18
+ # xattr -lr /Users/SWARM5/Work/twitter-kit-ios-master/TwitterKit/iphonesimulator/TwitterKit.framework
19
+ # xattr -cr /Users/SWARM5/Work/twitter-kit-ios-master/TwitterKit/iphonesimulator/TwitterKit.framework
20
+
14
21
# # Build TwitterKit.framework - armv7, arm64
15
22
xcodebuild \
16
23
-project TwitterKit/TwitterKit.xcodeproj \
@@ -28,6 +35,9 @@ lipo -create -output iOS/TwitterKit.framework/TwitterKit TwitterKit/iphoneos/Twi
28
35
lipo -archs iOS/TwitterKit.framework/TwitterKit
29
36
30
37
# # Zip them into TwitterKit.zip
31
- rm TwitterKit.zip
32
- zip -r TwitterKit.zip iOS/*
38
+ ZIP_FILE=TwitterKit.zip
39
+ if test -f " $ZIP_FILE " ; then
40
+ rm " $ZIP_FILE "
41
+ fi
42
+ zip -r " $ZIP_FILE " iOS/*
33
43
rm -rf iOS
You can’t perform that action at this time.
0 commit comments