Skip to content

Commit 36b6a2a

Browse files
committed
Refactor Info.plist file
I added PHPhotoLibraryPreventAutomaticLimitedAccessAlert = YES into Info.plist to use limited access functionality.
1 parent 5b64833 commit 36b6a2a

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/device_info/device_info_platform_interface/lib/model/android_device_info.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class AndroidDeviceInfo {
2929
required this.isPhysicalDevice,
3030
required this.androidId,
3131
required List<String> systemFeatures,
32-
}) : supported32BitAbis = List<String>.unmodifiable(supported32BitAbis),
32+
}) : supported32BitAbis = List<String>.unmodifiable(supported32BitAbis),
3333
supported64BitAbis = List<String>.unmodifiable(supported64BitAbis),
3434
supportedAbis = List<String>.unmodifiable(supportedAbis),
3535
systemFeatures = List<String>.unmodifiable(systemFeatures);

packages/google_maps_flutter/google_maps_flutter_web/lib/src/circles.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class CirclesController extends GeometryController {
1515
/// Initialize the cache. The [StreamController] comes from the [GoogleMapController], and is shared with other controllers.
1616
CirclesController({
1717
required StreamController<MapEvent> stream,
18-
}) : _streamController = stream,
18+
}) : _streamController = stream,
1919
_circleIdToController = Map<CircleId, CircleController>();
2020

2121
/// Returns the cache of [CircleController]s. Test only.

packages/google_maps_flutter/google_maps_flutter_web/lib/src/markers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class MarkersController extends GeometryController {
1515
/// Initialize the cache. The [StreamController] comes from the [GoogleMapController], and is shared with other controllers.
1616
MarkersController({
1717
required StreamController<MapEvent> stream,
18-
}) : _streamController = stream,
18+
}) : _streamController = stream,
1919
_markerIdToController = Map<MarkerId, MarkerController>();
2020

2121
/// Returns the cache of [MarkerController]s. Test only.

packages/google_maps_flutter/google_maps_flutter_web/lib/src/polygons.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class PolygonsController extends GeometryController {
1515
/// Initializes the cache. The [StreamController] comes from the [GoogleMapController], and is shared with other controllers.
1616
PolygonsController({
1717
required StreamController<MapEvent> stream,
18-
}) : _streamController = stream,
18+
}) : _streamController = stream,
1919
_polygonIdToController = Map<PolygonId, PolygonController>();
2020

2121
/// Returns the cache of [PolygonController]s. Test only.

packages/google_maps_flutter/google_maps_flutter_web/lib/src/polylines.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class PolylinesController extends GeometryController {
1515
/// Initializes the cache. The [StreamController] comes from the [GoogleMapController], and is shared with other controllers.
1616
PolylinesController({
1717
required StreamController<MapEvent> stream,
18-
}) : _streamController = stream,
18+
}) : _streamController = stream,
1919
_polylineIdToController = Map<PolylineId, PolylineController>();
2020

2121
/// Returns the cache of [PolylineContrller]s. Test only.

packages/image_picker/image_picker/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
1111
5C9513011EC38BD300040975 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C9513001EC38BD300040975 /* GeneratedPluginRegistrant.m */; };
1212
680049262280D736006DD6AB /* MetaDataUtilTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 680049252280D736006DD6AB /* MetaDataUtilTests.m */; };
13-
680049272280D79A006DD6AB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
1413
680049382280F2B9006DD6AB /* pngImage.png in Resources */ = {isa = PBXBuildFile; fileRef = 680049352280F2B8006DD6AB /* pngImage.png */; };
1514
680049392280F2B9006DD6AB /* jpgImage.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 680049362280F2B8006DD6AB /* jpgImage.jpg */; };
1615
6801C8392555D726009DAF8D /* ImagePickerFromGalleryUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6801C8382555D726009DAF8D /* ImagePickerFromGalleryUITests.m */; };
@@ -90,7 +89,6 @@
9089
isa = PBXFrameworksBuildPhase;
9190
buildActionMask = 2147483647;
9291
files = (
93-
F10E2DB84567A50A8721C9C7 /* libPods-RunnerUITests.a in Frameworks */,
9492
);
9593
runOnlyForDeploymentPostprocessing = 0;
9694
};

packages/image_picker/image_picker/example/ios/Runner/Info.plist

Lines changed: 2 additions & 0 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>PHPhotoLibraryPreventAutomaticLimitedAccessAlert</key>
6+
<true/>
57
<key>CFBundleDevelopmentRegion</key>
68
<string>en</string>
79
<key>CFBundleExecutable</key>

packages/webview_flutter/lib/webview_flutter.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class JavascriptChannel {
180180
JavascriptChannel({
181181
required this.name,
182182
required this.onMessageReceived,
183-
}) : assert(name != null),
183+
}) : assert(name != null),
184184
assert(onMessageReceived != null),
185185
assert(_validChannelNames.hasMatch(name));
186186

0 commit comments

Comments
 (0)