Skip to content

Commit 82c4a2c

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents ccda6d3 + e1ee597 commit 82c4a2c

File tree

7 files changed

+24
-8
lines changed

7 files changed

+24
-8
lines changed

Networking/Networking.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -774,7 +774,7 @@
774774
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
775775
SWIFT_VERSION = 4.0;
776776
TARGETED_DEVICE_FAMILY = "1,2";
777-
VALID_ARCHS = "arm64 armv7 armv7s x86_64";
777+
VALID_ARCHS = "arm64 armv7s";
778778
};
779779
name = Debug;
780780
};
@@ -803,7 +803,7 @@
803803
SKIP_INSTALL = YES;
804804
SWIFT_VERSION = 4.0;
805805
TARGETED_DEVICE_FAMILY = "1,2";
806-
VALID_ARCHS = "arm64 armv7 armv7s x86_64";
806+
VALID_ARCHS = "arm64 armv7s";
807807
};
808808
name = Release;
809809
};

Podfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,3 +98,13 @@ target 'Storage' do
9898
inherit! :search_paths
9999
end
100100
end
101+
102+
103+
# Workaround: Drop ARMv7 Architecture:
104+
# ====================================
105+
#
106+
post_install do |installer|
107+
installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
108+
configuration.build_settings['VALID_ARCHS'] = 'arm64 armv7s'
109+
end
110+
end

Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ PODS:
1313
- CocoaLumberjack/Default
1414
- CocoaLumberjack/Swift (3.4.2):
1515
- CocoaLumberjack/Default
16-
- Crashlytics (3.10.4):
16+
- Crashlytics (3.10.5):
1717
- Fabric (~> 1.7.9)
1818
- Fabric (1.7.9)
1919
- FormatterKit/Resources (1.8.2)
@@ -52,7 +52,7 @@ PODS:
5252
- WordPressShared (~> 1.0)
5353
- WordPressUI (~> 1.0)
5454
- wpxmlrpc (~> 0.8)
55-
- WordPressKit (1.1):
55+
- WordPressKit (1.2):
5656
- Alamofire (~> 4.7)
5757
- CocoaLumberjack (= 3.4.2)
5858
- NSObject-SafeExpectations (= 0.0.3)
@@ -114,7 +114,7 @@ SPEC CHECKSUMS:
114114
Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223
115115
Automattic-Tracks-iOS: d8c6c6c1351b1905a73e45f431b15598d71963b5
116116
CocoaLumberjack: db7cc9e464771f12054c22ff6947c5a58d43a0fd
117-
Crashlytics: 915a7787b84f635fb2a81f92a90e265c2c413f76
117+
Crashlytics: 7f2e38d302d9da96475b3d64d86fb29e31a542b7
118118
Fabric: a2917d3895e4c1569b9c3170de7320ea1b1e6661
119119
FormatterKit: 4b8f29acc9b872d5d12a63efb560661e8f2e1b98
120120
GoogleSignInRepacked: d357702618c555f38923576924661325eb1ef22b
@@ -128,11 +128,11 @@ SPEC CHECKSUMS:
128128
SVProgressHUD: 1428aafac632c1f86f62aa4243ec12008d7a51d6
129129
UIDeviceIdentifier: a959a6d4f51036b4180dd31fb26483a820f1cc46
130130
WordPressAuthenticator: 2825f0c56f83a17470564dbec427991fa5cac5af
131-
WordPressKit: a24baaa783c3a221f2d9a51c19318cbb27333373
131+
WordPressKit: 68eaa8df5ceedeed03ba796afc4b825f0bed4fe2
132132
WordPressShared: 063e1e8b1a7aaf635abf17f091a2d235a068abdc
133133
WordPressUI: af141587ec444f9af753a00605bd0d3f14d8d8a3
134134
wpxmlrpc: bfc572f62ce7ee897f6f38b098d2ba08732ecef4
135135

136-
PODFILE CHECKSUM: c627b723e165dabc83c6716871f3199190464f2c
136+
PODFILE CHECKSUM: d74ce74de818d7610b3ee7a23df5bf7890d6197e
137137

138138
COCOAPODS: 1.5.3

Storage/Storage.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -626,6 +626,7 @@
626626
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
627627
SWIFT_VERSION = 4.0;
628628
TARGETED_DEVICE_FAMILY = "1,2";
629+
VALID_ARCHS = "arm64 armv7s";
629630
};
630631
name = Debug;
631632
};
@@ -654,6 +655,7 @@
654655
SKIP_INSTALL = YES;
655656
SWIFT_VERSION = 4.0;
656657
TARGETED_DEVICE_FAMILY = "1,2";
658+
VALID_ARCHS = "arm64 armv7s";
657659
};
658660
name = Release;
659661
};

WooCommerce/Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.4</string>
20+
<string>0.4.2</string>
2121
<key>CFBundleURLTypes</key>
2222
<array>
2323
<dict>

WooCommerce/WooCommerce.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1297,6 +1297,7 @@
12971297
SWIFT_VERSION = 4.0;
12981298
TARGETED_DEVICE_FAMILY = "1,2";
12991299
USER_HEADER_SEARCH_PATHS = "";
1300+
VALID_ARCHS = "arm64 armv7s x86_64";
13001301
};
13011302
name = Debug;
13021303
};
@@ -1322,6 +1323,7 @@
13221323
SWIFT_VERSION = 4.0;
13231324
TARGETED_DEVICE_FAMILY = "1,2";
13241325
USER_HEADER_SEARCH_PATHS = "";
1326+
VALID_ARCHS = "arm64 armv7s x86_64";
13251327
};
13261328
name = Release;
13271329
};

Yosemite/Yosemite.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,7 @@
700700
SKIP_INSTALL = YES;
701701
SWIFT_VERSION = 4.0;
702702
TARGETED_DEVICE_FAMILY = "1,2";
703+
VALID_ARCHS = "arm64 armv7s";
703704
};
704705
name = Debug;
705706
};
@@ -727,6 +728,7 @@
727728
SKIP_INSTALL = YES;
728729
SWIFT_VERSION = 4.0;
729730
TARGETED_DEVICE_FAMILY = "1,2";
731+
VALID_ARCHS = "arm64 armv7s";
730732
};
731733
name = Release;
732734
};

0 commit comments

Comments
 (0)