Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
6ab00756
Unverified
Commit
6ab00756
authored
Dec 15, 2021
by
Jenn Magder
Committed by
GitHub
Dec 15, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build Flutter iOS plugins with all valid architectures (#95293)
parent
22edbc56
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
13 deletions
+68
-13
podhelper.rb
packages/flutter_tools/bin/podhelper.rb
+8
-3
ios_content_validation_test.dart
...s/test/integration.shard/ios_content_validation_test.dart
+60
-10
No files found.
packages/flutter_tools/bin/podhelper.rb
View file @
6ab00756
...
...
@@ -33,9 +33,6 @@ end
def
flutter_additional_ios_build_settings
(
target
)
return
unless
target
.
platform_name
==
:ios
# Return if it's not a Flutter plugin (transitive dependency).
return
unless
target
.
dependencies
.
any?
{
|
dependency
|
dependency
.
name
==
'Flutter'
}
# [target.deployment_target] is a [String] formatted as "8.0".
inherit_deployment_target
=
target
.
deployment_target
[
/\d+/
].
to_i
<
9
...
...
@@ -52,6 +49,14 @@ def flutter_additional_ios_build_settings(target)
release_framework_dir
=
File
.
expand_path
(
File
.
join
(
artifacts_dir
,
'ios-release'
,
'Flutter.xcframework'
),
__FILE__
)
target
.
build_configurations
.
each
do
|
build_configuration
|
# Build both x86_64 and arm64 simulator archs for all dependencies. If a single plugin does not support arm64 simulators,
# the app and all frameworks will fall back to x86_64. Unfortunately that case is not detectable in this script.
# Therefore all pods must have a x86_64 slice available, or linking a x86_64 app will fail.
build_configuration
.
build_settings
[
'ONLY_ACTIVE_ARCH'
]
=
'NO'
if
build_configuration
.
type
==
:debug
# Skip other updates if it's not a Flutter plugin (transitive dependency).
next
unless
target
.
dependencies
.
any?
{
|
dependency
|
dependency
.
name
==
'Flutter'
}
# Profile can't be derived from the CocoaPods build configuration. Use release framework (for linking only).
configuration_engine_dir
=
build_configuration
.
type
==
:debug
?
debug_framework_dir
:
release_framework_dir
Dir
.
new
(
configuration_engine_dir
).
each_child
do
|
xcframework_file
|
...
...
packages/flutter_tools/test/integration.shard/ios_content_validation_test.dart
View file @
6ab00756
...
...
@@ -16,6 +16,7 @@ import 'test_utils.dart';
void
main
(
)
{
group
(
'iOS app validation'
,
()
{
String
flutterRoot
;
Directory
pluginRoot
;
String
projectRoot
;
String
flutterBin
;
Directory
tempDir
;
...
...
@@ -29,18 +30,20 @@ void main() {
'flutter'
,
);
// Test a plugin example app to allow plugins validation.
processManager
.
runSync
(<
String
>[
flutterBin
,
...
getLocalEngineArguments
(),
'create'
,
'--verbose'
,
'--platforms=ios'
,
'-
i
'
,
'
objc
'
,
'-
t
'
,
'
plugin
'
,
'hello'
,
],
workingDirectory:
tempDir
.
path
);
projectRoot
=
tempDir
.
childDirectory
(
'hello'
).
path
;
pluginRoot
=
tempDir
.
childDirectory
(
'hello'
);
projectRoot
=
pluginRoot
.
childDirectory
(
'example'
).
path
;
});
tearDownAll
(()
{
...
...
@@ -56,6 +59,7 @@ void main() {
File
outputFlutterFrameworkBinary
;
Directory
outputAppFramework
;
File
outputAppFrameworkBinary
;
File
outputPluginFrameworkBinary
;
setUpAll
(()
{
processManager
.
runSync
(<
String
>[
...
...
@@ -85,11 +89,13 @@ void main() {
outputAppFramework
=
frameworkDirectory
.
childDirectory
(
'App.framework'
);
outputAppFrameworkBinary
=
outputAppFramework
.
childFile
(
'App'
);
outputPluginFrameworkBinary
=
frameworkDirectory
.
childDirectory
(
'hello.framework'
).
childFile
(
'hello'
);
});
testWithoutContext
(
'flutter build ios builds a valid app'
,
()
{
// Should only contain Flutter.framework and App.framework.
expect
(
frameworkDirectory
.
listSync
().
length
,
2
);
expect
(
outputPluginFrameworkBinary
,
exists
);
expect
(
outputAppFrameworkBinary
,
exists
);
expect
(
outputAppFramework
.
childFile
(
'Info.plist'
),
exists
);
...
...
@@ -202,17 +208,61 @@ void main() {
},
skip:
!
platform
.
isMacOS
||
buildMode
!=
BuildMode
.
release
);
// [intended] only makes sense on macos.
testWithoutContext
(
'validate obfuscation'
,
()
{
final
ProcessResult
grepResult
=
processManager
.
runSync
(<
String
>[
// HelloPlugin class is present in project.
ProcessResult
grepResult
=
processManager
.
runSync
(<
String
>[
'grep'
,
'-r'
,
'HelloPlugin'
,
pluginRoot
.
path
,
]);
// Matches exits 0.
expect
(
grepResult
.
exitCode
,
0
);
// Not present in binary.
grepResult
=
processManager
.
runSync
(<
String
>[
'grep'
,
'-i'
,
'hello'
,
'HelloPlugin'
,
outputAppFrameworkBinary
.
path
,
]);
expect
(
grepResult
.
stdout
,
isNot
(
contains
(
'matches'
)));
// Does not match exits 1.
expect
(
grepResult
.
exitCode
,
1
);
});
});
}
testWithoutContext
(
'builds all plugin architectures for simulator'
,
()
{
final
ProcessResult
buildSimulator
=
processManager
.
runSync
(
<
String
>[
flutterBin
,
...
getLocalEngineArguments
(),
'build'
,
'ios'
,
'--simulator'
,
'--verbose'
,
'--no-codesign'
,
],
workingDirectory:
projectRoot
,
);
expect
(
buildSimulator
.
exitCode
,
0
);
final
File
pluginFrameworkBinary
=
fileSystem
.
file
(
fileSystem
.
path
.
join
(
projectRoot
,
'build'
,
'ios'
,
'iphonesimulator'
,
'Runner.app'
,
'Frameworks'
,
'hello.framework'
,
'hello'
,
));
expect
(
pluginFrameworkBinary
,
exists
);
final
ProcessResult
archs
=
processManager
.
runSync
(
<
String
>[
'file'
,
pluginFrameworkBinary
.
path
],
);
expect
(
archs
.
stdout
,
contains
(
'Mach-O 64-bit dynamically linked shared library x86_64'
));
expect
(
archs
.
stdout
,
contains
(
'Mach-O 64-bit dynamically linked shared library arm64'
));
});
testWithoutContext
(
'build for simulator with all available architectures'
,
()
{
final
ProcessResult
buildSimulator
=
processManager
.
runSync
(
<
String
>[
...
...
@@ -250,6 +300,6 @@ void main() {
expect
(
archs
.
stdout
,
contains
(
'Mach-O 64-bit dynamically linked shared library arm64'
));
});
},
skip:
!
platform
.
isMacOS
,
// [intended] only makes sense for macos platform.
timeout:
const
Timeout
(
Duration
(
minutes:
5
))
timeout:
const
Timeout
(
Duration
(
minutes:
7
))
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment