Skip to content

Commit 7f4e5e1

Browse files
build: Update ios config
1 parent 7f02f86 commit 7f4e5e1

File tree

9 files changed

+30
-134
lines changed

9 files changed

+30
-134
lines changed

example/ios/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
**/dgph
12
*.mode1v3
23
*.mode2v3
34
*.moved-aside
@@ -18,6 +19,7 @@ Flutter/App.framework
1819
Flutter/Flutter.framework
1920
Flutter/Flutter.podspec
2021
Flutter/Generated.xcconfig
22+
Flutter/ephemeral/
2123
Flutter/app.flx
2224
Flutter/app.zip
2325
Flutter/flutter_assets/

example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>CFBundleDevelopmentRegion</key>
6-
<string>$(DEVELOPMENT_LANGUAGE)</string>
6+
<string>en</string>
77
<key>CFBundleExecutable</key>
88
<string>App</string>
99
<key>CFBundleIdentifier</key>
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>9.0</string>
24+
<string>11.0</string>
2525
</dict>
2626
</plist>

example/ios/Flutter/Debug.xcconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
21
#include "Generated.xcconfig"

example/ios/Flutter/Release.xcconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
21
#include "Generated.xcconfig"

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 19 additions & 120 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@
1010
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
1111
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1212
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
13-
9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; };
1413
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
1514
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1615
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
17-
C31F94CEB23C7232A08A1C1D /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B2DCCD5D449D2230FCFBCF1 /* Pods_Runner.framework */; };
1816
/* End PBXBuildFile section */
1917

2018
/* Begin PBXCopyFilesBuildPhase section */
@@ -34,7 +32,6 @@
3432
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
3533
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
3634
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
37-
5B2DCCD5D449D2230FCFBCF1 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
3835
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
3936
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
4037
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
@@ -45,31 +42,19 @@
4542
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
4643
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
4744
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
48-
9A0A7F33C663E5245687DE15 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
49-
A0B698C22B4C94F21D65869A /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
50-
A9D1BEA2A39423BFE2CF89D7 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
5145
/* End PBXFileReference section */
5246

5347
/* Begin PBXFrameworksBuildPhase section */
5448
97C146EB1CF9000F007C117D /* Frameworks */ = {
5549
isa = PBXFrameworksBuildPhase;
5650
buildActionMask = 2147483647;
5751
files = (
58-
C31F94CEB23C7232A08A1C1D /* Pods_Runner.framework in Frameworks */,
5952
);
6053
runOnlyForDeploymentPostprocessing = 0;
6154
};
6255
/* End PBXFrameworksBuildPhase section */
6356

6457
/* Begin PBXGroup section */
65-
44845B0B74B2F5D3B02E65E1 /* Frameworks */ = {
66-
isa = PBXGroup;
67-
children = (
68-
5B2DCCD5D449D2230FCFBCF1 /* Pods_Runner.framework */,
69-
);
70-
name = Frameworks;
71-
sourceTree = "<group>";
72-
};
7358
9740EEB11CF90186004384FC /* Flutter */ = {
7459
isa = PBXGroup;
7560
children = (
@@ -87,8 +72,6 @@
8772
9740EEB11CF90186004384FC /* Flutter */,
8873
97C146F01CF9000F007C117D /* Runner */,
8974
97C146EF1CF9000F007C117D /* Products */,
90-
BD15487EBB8970678985AB1B /* Pods */,
91-
44845B0B74B2F5D3B02E65E1 /* Frameworks */,
9275
);
9376
sourceTree = "<group>";
9477
};
@@ -107,7 +90,6 @@
10790
97C146FD1CF9000F007C117D /* Assets.xcassets */,
10891
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
10992
97C147021CF9000F007C117D /* Info.plist */,
110-
97C146F11CF9000F007C117D /* Supporting Files */,
11193
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
11294
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
11395
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
@@ -116,39 +98,19 @@
11698
path = Runner;
11799
sourceTree = "<group>";
118100
};
119-
97C146F11CF9000F007C117D /* Supporting Files */ = {
120-
isa = PBXGroup;
121-
children = (
122-
);
123-
name = "Supporting Files";
124-
sourceTree = "<group>";
125-
};
126-
BD15487EBB8970678985AB1B /* Pods */ = {
127-
isa = PBXGroup;
128-
children = (
129-
9A0A7F33C663E5245687DE15 /* Pods-Runner.debug.xcconfig */,
130-
A9D1BEA2A39423BFE2CF89D7 /* Pods-Runner.release.xcconfig */,
131-
A0B698C22B4C94F21D65869A /* Pods-Runner.profile.xcconfig */,
132-
);
133-
name = Pods;
134-
path = Pods;
135-
sourceTree = "<group>";
136-
};
137101
/* End PBXGroup section */
138102

139103
/* Begin PBXNativeTarget section */
140104
97C146ED1CF9000F007C117D /* Runner */ = {
141105
isa = PBXNativeTarget;
142106
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
143107
buildPhases = (
144-
1ED2415A5C260BD9DE1C068D /* [CP] Check Pods Manifest.lock */,
145108
9740EEB61CF901F6004384FC /* Run Script */,
146109
97C146EA1CF9000F007C117D /* Sources */,
147110
97C146EB1CF9000F007C117D /* Frameworks */,
148111
97C146EC1CF9000F007C117D /* Resources */,
149112
9705A1C41CF9048500538489 /* Embed Frameworks */,
150113
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
151-
1463ED95FEBF7C7897230AD0 /* [CP] Embed Pods Frameworks */,
152114
);
153115
buildRules = (
154116
);
@@ -166,16 +128,16 @@
166128
isa = PBXProject;
167129
attributes = {
168130
LastUpgradeCheck = 1300;
169-
ORGANIZATIONNAME = "The Chromium Authors";
131+
ORGANIZATIONNAME = "";
170132
TargetAttributes = {
171133
97C146ED1CF9000F007C117D = {
172134
CreatedOnToolsVersion = 7.3.1;
173-
LastSwiftMigration = 0910;
135+
LastSwiftMigration = 1100;
174136
};
175137
};
176138
};
177139
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
178-
compatibilityVersion = "Xcode 3.2";
140+
compatibilityVersion = "Xcode 9.3";
179141
developmentRegion = en;
180142
hasScannedForEncodings = 0;
181143
knownRegions = (
@@ -199,7 +161,6 @@
199161
files = (
200162
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
201163
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
202-
9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */,
203164
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
204165
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
205166
);
@@ -208,56 +169,6 @@
208169
/* End PBXResourcesBuildPhase section */
209170

210171
/* Begin PBXShellScriptBuildPhase section */
211-
1463ED95FEBF7C7897230AD0 /* [CP] Embed Pods Frameworks */ = {
212-
isa = PBXShellScriptBuildPhase;
213-
buildActionMask = 2147483647;
214-
files = (
215-
);
216-
inputPaths = (
217-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
218-
"${BUILT_PRODUCTS_DIR}/DKImagePickerController/DKImagePickerController.framework",
219-
"${BUILT_PRODUCTS_DIR}/DKPhotoGallery/DKPhotoGallery.framework",
220-
"${BUILT_PRODUCTS_DIR}/FLAnimatedImage/FLAnimatedImage.framework",
221-
"${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework",
222-
"${BUILT_PRODUCTS_DIR}/SDWebImageFLPlugin/SDWebImageFLPlugin.framework",
223-
"${BUILT_PRODUCTS_DIR}/file_picker/file_picker.framework",
224-
);
225-
name = "[CP] Embed Pods Frameworks";
226-
outputPaths = (
227-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DKImagePickerController.framework",
228-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DKPhotoGallery.framework",
229-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FLAnimatedImage.framework",
230-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework",
231-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImageFLPlugin.framework",
232-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/file_picker.framework",
233-
);
234-
runOnlyForDeploymentPostprocessing = 0;
235-
shellPath = /bin/sh;
236-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
237-
showEnvVarsInLog = 0;
238-
};
239-
1ED2415A5C260BD9DE1C068D /* [CP] Check Pods Manifest.lock */ = {
240-
isa = PBXShellScriptBuildPhase;
241-
buildActionMask = 2147483647;
242-
files = (
243-
);
244-
inputFileListPaths = (
245-
);
246-
inputPaths = (
247-
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
248-
"${PODS_ROOT}/Manifest.lock",
249-
);
250-
name = "[CP] Check Pods Manifest.lock";
251-
outputFileListPaths = (
252-
);
253-
outputPaths = (
254-
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
255-
);
256-
runOnlyForDeploymentPostprocessing = 0;
257-
shellPath = /bin/sh;
258-
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
259-
showEnvVarsInLog = 0;
260-
};
261172
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
262173
isa = PBXShellScriptBuildPhase;
263174
buildActionMask = 2147483647;
@@ -361,9 +272,10 @@
361272
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
362273
GCC_WARN_UNUSED_FUNCTION = YES;
363274
GCC_WARN_UNUSED_VARIABLE = YES;
364-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
275+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
365276
MTL_ENABLE_DEBUG_INFO = NO;
366277
SDKROOT = iphoneos;
278+
SUPPORTED_PLATFORMS = iphoneos;
367279
TARGETED_DEVICE_FAMILY = "1,2";
368280
VALIDATE_PRODUCT = YES;
369281
};
@@ -377,20 +289,15 @@
377289
CLANG_ENABLE_MODULES = YES;
378290
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
379291
ENABLE_BITCODE = NO;
380-
FRAMEWORK_SEARCH_PATHS = (
381-
"$(inherited)",
382-
"$(PROJECT_DIR)/Flutter",
383-
);
384292
INFOPLIST_FILE = Runner/Info.plist;
385-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
386-
LIBRARY_SEARCH_PATHS = (
293+
LD_RUNPATH_SEARCH_PATHS = (
387294
"$(inherited)",
388-
"$(PROJECT_DIR)/Flutter",
295+
"@executable_path/Frameworks",
389296
);
390297
PRODUCT_BUNDLE_IDENTIFIER = dev.formbuilderfilepicker.example;
391298
PRODUCT_NAME = "$(TARGET_NAME)";
392299
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
393-
SWIFT_VERSION = 4.0;
300+
SWIFT_VERSION = 5.0;
394301
VERSIONING_SYSTEM = "apple-generic";
395302
};
396303
name = Profile;
@@ -442,7 +349,7 @@
442349
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
443350
GCC_WARN_UNUSED_FUNCTION = YES;
444351
GCC_WARN_UNUSED_VARIABLE = YES;
445-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
352+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
446353
MTL_ENABLE_DEBUG_INFO = YES;
447354
ONLY_ACTIVE_ARCH = YES;
448355
SDKROOT = iphoneos;
@@ -491,10 +398,12 @@
491398
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
492399
GCC_WARN_UNUSED_FUNCTION = YES;
493400
GCC_WARN_UNUSED_VARIABLE = YES;
494-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
401+
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
495402
MTL_ENABLE_DEBUG_INFO = NO;
496403
SDKROOT = iphoneos;
497-
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
404+
SUPPORTED_PLATFORMS = iphoneos;
405+
SWIFT_COMPILATION_MODE = wholemodule;
406+
SWIFT_OPTIMIZATION_LEVEL = "-O";
498407
TARGETED_DEVICE_FAMILY = "1,2";
499408
VALIDATE_PRODUCT = YES;
500409
};
@@ -508,21 +417,16 @@
508417
CLANG_ENABLE_MODULES = YES;
509418
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
510419
ENABLE_BITCODE = NO;
511-
FRAMEWORK_SEARCH_PATHS = (
512-
"$(inherited)",
513-
"$(PROJECT_DIR)/Flutter",
514-
);
515420
INFOPLIST_FILE = Runner/Info.plist;
516-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
517-
LIBRARY_SEARCH_PATHS = (
421+
LD_RUNPATH_SEARCH_PATHS = (
518422
"$(inherited)",
519-
"$(PROJECT_DIR)/Flutter",
423+
"@executable_path/Frameworks",
520424
);
521425
PRODUCT_BUNDLE_IDENTIFIER = dev.formbuilderfilepicker.example;
522426
PRODUCT_NAME = "$(TARGET_NAME)";
523427
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
524428
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
525-
SWIFT_VERSION = 4.0;
429+
SWIFT_VERSION = 5.0;
526430
VERSIONING_SYSTEM = "apple-generic";
527431
};
528432
name = Debug;
@@ -535,20 +439,15 @@
535439
CLANG_ENABLE_MODULES = YES;
536440
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
537441
ENABLE_BITCODE = NO;
538-
FRAMEWORK_SEARCH_PATHS = (
539-
"$(inherited)",
540-
"$(PROJECT_DIR)/Flutter",
541-
);
542442
INFOPLIST_FILE = Runner/Info.plist;
543-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
544-
LIBRARY_SEARCH_PATHS = (
443+
LD_RUNPATH_SEARCH_PATHS = (
545444
"$(inherited)",
546-
"$(PROJECT_DIR)/Flutter",
445+
"@executable_path/Frameworks",
547446
);
548447
PRODUCT_BUNDLE_IDENTIFIER = dev.formbuilderfilepicker.example;
549448
PRODUCT_NAME = "$(TARGET_NAME)";
550449
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
551-
SWIFT_VERSION = 4.0;
450+
SWIFT_VERSION = 5.0;
552451
VERSIONING_SYSTEM = "apple-generic";
553452
};
554453
name = Release;

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
2828
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
2929
shouldUseLaunchSchemeArgsEnv = "YES">
30-
<Testables>
31-
</Testables>
3230
<MacroExpansion>
3331
<BuildableReference
3432
BuildableIdentifier = "primary"
@@ -38,8 +36,8 @@
3836
ReferencedContainer = "container:Runner.xcodeproj">
3937
</BuildableReference>
4038
</MacroExpansion>
41-
<AdditionalOptions>
42-
</AdditionalOptions>
39+
<Testables>
40+
</Testables>
4341
</TestAction>
4442
<LaunchAction
4543
buildConfiguration = "Debug"
@@ -61,8 +59,6 @@
6159
ReferencedContainer = "container:Runner.xcodeproj">
6260
</BuildableReference>
6361
</BuildableProductRunnable>
64-
<AdditionalOptions>
65-
</AdditionalOptions>
6662
</LaunchAction>
6763
<ProfileAction
6864
buildConfiguration = "Profile"

example/ios/Runner.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/ios/Runner/Info.plist

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<dict>
55
<key>CFBundleDevelopmentRegion</key>
66
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleDisplayName</key>
8+
<string>Example</string>
79
<key>CFBundleExecutable</key>
810
<string>$(EXECUTABLE_NAME)</string>
911
<key>CFBundleIdentifier</key>
@@ -47,5 +49,7 @@
4749
<string>Example usage description</string>
4850
<key>CADisableMinimumFrameDurationOnPhone</key>
4951
<true/>
52+
<key>UIApplicationSupportsIndirectInputEvents</key>
53+
<true/>
5054
</dict>
5155
</plist>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#import "GeneratedPluginRegistrant.h"
1+
#import "GeneratedPluginRegistrant.h"

0 commit comments

Comments
 (0)