This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree 2 files changed +32
-1
lines changed
ios/FlutterAppExtensionTestHost/Scenarios 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change
1
+ <!-- Dummy plist file to make the impeller version of scenario test happy-->
2
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
3
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
4
+ <plist version =" 1.0" >
5
+ <dict >
6
+ <!-- This flag does not do anything, it only makes the xcodebuild command happy-->
7
+ <key >FLTEnableImpeller </key >
8
+ <true />
9
+ <key >UIApplicationSceneManifest </key >
10
+ <dict >
11
+ <key >UIApplicationSupportsMultipleScenes </key >
12
+ <false />
13
+ <key >UISceneConfigurations </key >
14
+ <dict >
15
+ <key >UIWindowSceneSessionRoleApplication </key >
16
+ <array >
17
+ <dict >
18
+ <key >UISceneConfigurationName </key >
19
+ <string >Default Configuration </string >
20
+ <key >UISceneDelegateClassName </key >
21
+ <string >SceneDelegate </string >
22
+ <key >UISceneStoryboardFile </key >
23
+ <string >Main </string >
24
+ </dict >
25
+ </array >
26
+ </dict >
27
+ </dict >
28
+ </dict >
29
+ </plist >
Original file line number Diff line number Diff line change @@ -109,7 +109,9 @@ if set -o pipefail && xcodebuild -sdk iphonesimulator \
109
109
-skip-testing ScenariosUITests/TwoPlatformViewClipRRectTests/testPlatformView \
110
110
-skip-testing ScenariosUITests/TwoPlatformViewsWithOtherBackDropFilterTests/testPlatformView \
111
111
-skip-testing ScenariosUITests/UnobstructedPlatformViewTests/testMultiplePlatformViewsWithOverlays \
112
- INFOPLIST_FILE=" Scenarios/Info_Impeller.plist" ; then # Plist with FLTEnableImpeller=YES
112
+ # Plist with FLTEnableImpeller=YES, all projects in the workspace requires this file.
113
+ # For example, FlutterAppExtensionTestHost has a dummy file under the below directory.
114
+ INFOPLIST_FILE=" Scenarios/Info_Impeller.plist" ; then
113
115
echo " test success."
114
116
else
115
117
echo " test failed."
You can’t perform that action at this time.
0 commit comments