Skip to content

Commit 3eacf05

Browse files
committed
chore: update example app
1 parent ebdeeb4 commit 3eacf05

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@
6262
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
6363
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
6464
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
65+
9D70DCE02E13E63100BC089B /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
6566
9DE448232E0E7D6C008D9604 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = System/Library/Frameworks/AdSupport.framework; sourceTree = SDKROOT; };
6667
9DE448252E0E7D71008D9604 /* AdServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdServices.framework; path = System/Library/Frameworks/AdServices.framework; sourceTree = SDKROOT; };
6768
9DE448272E0E7D76008D9604 /* AppTrackingTransparency.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppTrackingTransparency.framework; path = System/Library/Frameworks/AppTrackingTransparency.framework; sourceTree = SDKROOT; };
6869
9DE448292E0E7D7A008D9604 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; };
69-
9DE4482B2E0E7DB1008D9604 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = RunnerTests.xctest; path = "/Users/uerceg/GitHub/flutter_sdk_dev/example/ios/build/Debug-iphoneos/Runner.app/PlugIns/RunnerTests.xctest"; sourceTree = "<absolute>"; };
7070
ACF65A8BFDE5CDDA65DDBFDC /* 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>"; };
7171
BF876297B32EC6E04F7E818F /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
7272
DC62EBC5D8990B3CF54CF3BD /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -136,6 +136,7 @@
136136
isa = PBXGroup;
137137
children = (
138138
97C146EE1CF9000F007C117D /* Runner.app */,
139+
9D70DCE02E13E63100BC089B /* RunnerTests.xctest */,
139140
);
140141
name = Products;
141142
sourceTree = "<group>";
@@ -187,7 +188,7 @@
187188
);
188189
name = RunnerTests;
189190
productName = RunnerTests;
190-
productReference = 9DE4482B2E0E7DB1008D9604 /* RunnerTests.xctest */;
191+
productReference = 9D70DCE02E13E63100BC089B /* RunnerTests.xctest */;
191192
productType = "com.apple.product-type.bundle.unit-test";
192193
};
193194
97C146ED1CF9000F007C117D /* Runner */ = {

example/ios/Runner/Info.plist

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
44
<dict>
5+
<key>CADisableMinimumFrameDurationOnPhone</key>
6+
<true/>
57
<key>CFBundleDevelopmentRegion</key>
68
<string>$(DEVELOPMENT_LANGUAGE)</string>
79
<key>CFBundleDisplayName</key>
@@ -24,6 +26,10 @@
2426
<string>$(FLUTTER_BUILD_NUMBER)</string>
2527
<key>LSRequiresIPhoneOS</key>
2628
<true/>
29+
<key>NSUserTrackingUsageDescription</key>
30+
<string>This is needed to access IDFA</string>
31+
<key>UIApplicationSupportsIndirectInputEvents</key>
32+
<true/>
2733
<key>UILaunchStoryboardName</key>
2834
<string>LaunchScreen</string>
2935
<key>UIMainStoryboardFile</key>
@@ -41,11 +47,5 @@
4147
<string>UIInterfaceOrientationLandscapeLeft</string>
4248
<string>UIInterfaceOrientationLandscapeRight</string>
4349
</array>
44-
<key>CADisableMinimumFrameDurationOnPhone</key>
45-
<true/>
46-
<key>NSUserTrackingUsageDescription</key>
47-
<string>This is needed to access IDFA</string>
48-
<key>UIApplicationSupportsIndirectInputEvents</key>
49-
<true/>
5050
</dict>
5151
</plist>

0 commit comments

Comments
 (0)