Skip to content

Commit 7643ab6

Browse files
committed
add space escape for ios cocoapods
1 parent dc74c23 commit 7643ab6

11 files changed

+43
-23
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.3
2+
3+
- Fixed path import with spaces in cocoapods for ios
4+
15
## 3.0.2
26

37
- Added fix when running on simulator "building for iOS Simulator, but linking in object file built for iOS"

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>8.0</string>
24+
<string>9.0</string>
2525
</dict>
2626
</plist>

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ EXTERNAL SOURCES:
1414
:path: Flutter
1515

1616
SPEC CHECKSUMS:
17-
fast_rsa: 13b464e808666d4c2962acc8cc5aadfcf4dfe8a4
18-
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
17+
fast_rsa: c8a1df2a42ce459a1995abd4a8396f763fef99f4
18+
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
1919

2020
PODFILE CHECKSUM: aafe91acc616949ddb318b77800a7f51bffa2a4c
2121

22-
COCOAPODS: 1.10.2
22+
COCOAPODS: 1.11.2

example/linux/flutter/generated_plugin_registrant.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Generated file. Do not edit.
33
//
44

5+
// clang-format off
6+
57
#include "generated_plugin_registrant.h"
68

79
#include <fast_rsa/fast_rsa_plugin.h>

example/linux/flutter/generated_plugin_registrant.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Generated file. Do not edit.
33
//
44

5+
// clang-format off
6+
57
#ifndef GENERATED_PLUGIN_REGISTRANT_
68
#define GENERATED_PLUGIN_REGISTRANT_
79

example/pubspec.lock

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages:
3535
name: async
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "2.6.1"
38+
version: "2.8.1"
3939
boolean_selector:
4040
dependency: transitive
4141
description:
@@ -56,7 +56,7 @@ packages:
5656
name: charcode
5757
url: "https://pub.dartlang.org"
5858
source: hosted
59-
version: "1.2.0"
59+
version: "1.3.1"
6060
cli_util:
6161
dependency: transitive
6262
description:
@@ -91,7 +91,7 @@ packages:
9191
name: coverage
9292
url: "https://pub.dartlang.org"
9393
source: hosted
94-
version: "1.0.2"
94+
version: "1.0.3"
9595
crypto:
9696
dependency: transitive
9797
description:
@@ -119,7 +119,7 @@ packages:
119119
path: ".."
120120
relative: true
121121
source: path
122-
version: "3.0.2"
122+
version: "3.0.3"
123123
ffi:
124124
dependency: transitive
125125
description:
@@ -133,7 +133,7 @@ packages:
133133
name: file
134134
url: "https://pub.dartlang.org"
135135
source: hosted
136-
version: "6.1.0"
136+
version: "6.1.2"
137137
flutter:
138138
dependency: "direct main"
139139
description: flutter
@@ -154,6 +154,13 @@ packages:
154154
description: flutter
155155
source: sdk
156156
version: "0.0.0"
157+
frontend_server_client:
158+
dependency: transitive
159+
description:
160+
name: frontend_server_client
161+
url: "https://pub.dartlang.org"
162+
source: hosted
163+
version: "2.1.2"
157164
fuchsia_remote_debug_protocol:
158165
dependency: transitive
159166
description: flutter
@@ -214,7 +221,7 @@ packages:
214221
name: meta
215222
url: "https://pub.dartlang.org"
216223
source: hosted
217-
version: "1.3.0"
224+
version: "1.7.0"
218225
mime:
219226
dependency: transitive
220227
description:
@@ -270,7 +277,7 @@ packages:
270277
name: process
271278
url: "https://pub.dartlang.org"
272279
source: hosted
273-
version: "4.2.1"
280+
version: "4.2.3"
274281
pub_semver:
275282
dependency: transitive
276283
description:
@@ -373,21 +380,21 @@ packages:
373380
name: test
374381
url: "https://pub.dartlang.org"
375382
source: hosted
376-
version: "1.16.8"
383+
version: "1.17.10"
377384
test_api:
378385
dependency: transitive
379386
description:
380387
name: test_api
381388
url: "https://pub.dartlang.org"
382389
source: hosted
383-
version: "0.3.0"
390+
version: "0.4.2"
384391
test_core:
385392
dependency: transitive
386393
description:
387394
name: test_core
388395
url: "https://pub.dartlang.org"
389396
source: hosted
390-
version: "0.3.19"
397+
version: "0.4.0"
391398
typed_data:
392399
dependency: transitive
393400
description:
@@ -408,7 +415,7 @@ packages:
408415
name: vm_service
409416
url: "https://pub.dartlang.org"
410417
source: hosted
411-
version: "6.2.0"
418+
version: "7.1.1"
412419
watcher:
413420
dependency: transitive
414421
description:

example/windows/flutter/generated_plugin_registrant.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Generated file. Do not edit.
33
//
44

5+
// clang-format off
6+
57
#include "generated_plugin_registrant.h"
68

79
#include <fast_rsa/fast_rsa_plugin.h>

example/windows/flutter/generated_plugin_registrant.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
// Generated file. Do not edit.
33
//
44

5+
// clang-format off
6+
57
#ifndef GENERATED_PLUGIN_REGISTRANT_
68
#define GENERATED_PLUGIN_REGISTRANT_
79

ios/fast_rsa.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
33
# Run `pod lib lint fast_rsa.podspec' to validate before publishing.
44
#
5-
shared_lib = File.join(__dir__, "librsa_bridge.a")
5+
shared_lib = File.join(__dir__, "librsa_bridge.a").gsub(/ /, '\ ')
66

77
Pod::Spec.new do |s|
88
s.name = 'fast_rsa'
@@ -22,7 +22,8 @@ library for use RSA.
2222
s.platform = :ios, '8.0'
2323
s.xcconfig = { 'OTHER_LDFLAGS' => "-force_load '#{shared_lib}'"}
2424
# Flutter.framework does not contain a i386 slice. Only x86_64 simulators are supported.
25-
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
26-
25+
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
26+
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
2727
s.swift_version = '5.0'
28+
2829
end

pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages:
77
name: async
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "2.6.1"
10+
version: "2.8.1"
1111
boolean_selector:
1212
dependency: transitive
1313
description:
@@ -28,7 +28,7 @@ packages:
2828
name: charcode
2929
url: "https://pub.dartlang.org"
3030
source: hosted
31-
version: "1.2.0"
31+
version: "1.3.1"
3232
clock:
3333
dependency: transitive
3434
description:
@@ -92,7 +92,7 @@ packages:
9292
name: meta
9393
url: "https://pub.dartlang.org"
9494
source: hosted
95-
version: "1.3.0"
95+
version: "1.7.0"
9696
path:
9797
dependency: transitive
9898
description:
@@ -146,7 +146,7 @@ packages:
146146
name: test_api
147147
url: "https://pub.dartlang.org"
148148
source: hosted
149-
version: "0.3.0"
149+
version: "0.4.2"
150150
typed_data:
151151
dependency: transitive
152152
description:

0 commit comments

Comments
 (0)