Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@
9705A1C41CF9048500538489 /* Embed Frameworks */,
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
BB6BD9A1101E970BEF85B6D2 /* [CP] Copy Pods Resources */,
65FA8ABC2DB1E3267F397BFC /* [CP] Embed Pods Frameworks */,
);
buildRules = (
);
Expand Down Expand Up @@ -386,6 +387,24 @@
shellPath = /bin/sh;
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
};
65FA8ABC2DB1E3267F397BFC /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/integration_test/integration_test.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/integration_test.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
74BF216DF17B0C7F983459BD /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file.

@import google_maps_flutter_ios;
#if __has_include(<google_maps_flutter_ios/google_maps_flutter_ios-umbrella.h>)
@import google_maps_flutter_ios.Test;
#endif
@import XCTest;
#import <OCMock/OCMock.h>
#import <google_maps_flutter_ios/GoogleMapMarkerController_Test.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file.

@import google_maps_flutter_ios;
#if __has_include(<google_maps_flutter_ios/google_maps_flutter_ios-umbrella.h>)
@import google_maps_flutter_ios.Test;
#endif
@import XCTest;
@import GoogleMaps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file.

@import google_maps_flutter_ios;
#if __has_include(<google_maps_flutter_ios/google_maps_flutter_ios-umbrella.h>)
@import google_maps_flutter_ios.Test;
#endif
@import XCTest;
@import GoogleMaps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file.

@import google_maps_flutter_ios;
#if __has_include(<google_maps_flutter_ios/google_maps_flutter_ios-umbrella.h>)
@import google_maps_flutter_ios.Test;
#endif
@import XCTest;
@import GoogleMaps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file.

@import google_maps_flutter_ios;
#if __has_include(<google_maps_flutter_ios/google_maps_flutter_ios-umbrella.h>)
@import google_maps_flutter_ios.Test;
#endif
@import XCTest;
@import GoogleMaps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file.

@import google_maps_flutter_ios;
#if __has_include(<google_maps_flutter_ios/google_maps_flutter_ios-umbrella.h>)
@import google_maps_flutter_ios.Test;
#endif
@import XCTest;
@import GoogleMaps;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "FGMClusterManagersController.h"

#import "FGMMarkerUserData.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/FGMClusterManagersController.h"
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

@interface FGMClusterManagersController ()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "FGMMarkerUserData.h"
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"

@implementation FGMMarkerUserData

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "FLTGoogleMapHeatmapController.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapHeatmapController.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

/// If Swift Package Manager is in use, Objective-C headers are available under the
/// GoogleMapsUtilsObjC package. When using CocoaPods, the headers are provided by the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "FLTGoogleMapJSONConversions.h"
#import "FGMMarkerUserData.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"

/// Returns dict[key], or nil if dict[key] is NSNull.
id FGMGetValueOrNilFromDict(NSDictionary *dict, NSString *key) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "FLTGoogleMapTileOverlayController.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapTileOverlayController.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

@interface FLTGoogleMapTileOverlayController ()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "FLTGoogleMapsPlugin.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapsPlugin.h"

#pragma mark - GoogleMaps plugin implementation

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "GoogleMapCircleController.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/GoogleMapCircleController.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

@interface FLTGoogleMapCircleController ()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,12 @@
@import GoogleMapsUtilsObjC;
#endif

#import "GoogleMapController.h"

#import "FGMMarkerUserData.h"
#import "FLTGoogleMapHeatmapController.h"
#import "FLTGoogleMapJSONConversions.h"
#import "FLTGoogleMapTileOverlayController.h"
#import "messages.g.h"
#import "./include/google_maps_flutter_ios/GoogleMapController.h"
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapHeatmapController.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapTileOverlayController.h"
#import "./include/google_maps_flutter_ios/messages.g.h"

#pragma mark - Conversion of JSON-like values sent via platform channels. Forward declarations.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "GoogleMapMarkerController.h"

#import "FGMMarkerUserData.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/GoogleMapMarkerController.h"
#import "./include/google_maps_flutter_ios/FGMMarkerUserData.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

@interface FLTGoogleMapMarkerController ()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "GoogleMapPolygonController.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/GoogleMapPolygonController.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

@interface FLTGoogleMapPolygonController ()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#import "GoogleMapPolylineController.h"
#import "FLTGoogleMapJSONConversions.h"
#import "./include/google_maps_flutter_ios/GoogleMapPolylineController.h"
#import "./include/google_maps_flutter_ios/FLTGoogleMapJSONConversions.h"

@interface FLTGoogleMapPolylineController ()

Expand Down