-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update GooglePlaces to 2.5 * Migrate to Swift 4
- Loading branch information
1 parent
b446216
commit 07c295f
Showing
113 changed files
with
450 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 | ||
4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
github "xmartlabs/Eureka" ~> 3.0 | ||
github "xmartlabs/Eureka" ~> 4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
git "file:///Users/mathiasclaasen/Developer/Eureka" "2ca4188a722eb0dda6f714d6aecfab84aad018fe" | ||
github "xmartlabs/Eureka" "4.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
Frameworks/GoogleMapsBase.framework/Headers/GMSDeprecationMacros.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// | ||
// GMSDeprecationMacros.h | ||
// Google Maps SDK for iOS | ||
// | ||
// Copyright 2015 Google Inc. | ||
// | ||
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of | ||
// Service: https://developers.google.com/maps/terms | ||
// | ||
|
||
#ifndef IPHONE_MAPS_SDK_BASE_GMSDEPRECATIONMACROS_H_ | ||
#define IPHONE_MAPS_SDK_BASE_GMSDEPRECATIONMACROS_H_ | ||
|
||
#ifndef __GMS_AVAILABLE_BUT_DEPRECATED | ||
#define __GMS_AVAILABLE_BUT_DEPRECATED __deprecated | ||
#endif | ||
|
||
#ifndef __GMS_AVAILABLE_BUT_DEPRECATED_MSG | ||
#define __GMS_AVAILABLE_BUT_DEPRECATED_MSG(msg) __deprecated_msg(msg) | ||
#endif | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#import "GMSCompatabilityMacros.h" | ||
#import "GMSCoordinateBounds.h" | ||
#import "GMSDeprecationMacros.h" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
framework module GoogleMapsBase { | ||
umbrella header "GoogleMapsBase.h" | ||
export * | ||
module * { export *} | ||
link "z" | ||
link framework "CoreLocation" | ||
link framework "CoreTelephony" | ||
link framework "Security"} |
Binary file not shown.
2 changes: 0 additions & 2 deletions
2
Frameworks/GoogleMapsBase.framework/Versions/A/Headers/GoogleMapsBase.h
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
Frameworks/GoogleMapsBase.framework/Versions/A/Modules/module.modulemap
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
Frameworks/GooglePlaces.framework/Headers/GMSAutocompleteBoundsMode.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// GMSAutocompleteBoundsMode.h | ||
// Google Places API for iOS | ||
// | ||
// Copyright 2017 Google Inc. | ||
// | ||
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of | ||
// Service: https://developers.google.com/maps/terms | ||
// | ||
|
||
/** | ||
* \defgroup AutocompleteBoundsMode GMSAutocompleteBoundsMode | ||
* @{ | ||
*/ | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN; | ||
|
||
/** | ||
* Specifies how autocomplete should interpret the |bounds| parameters. | ||
*/ | ||
typedef NS_ENUM(NSUInteger, GMSAutocompleteBoundsMode) { | ||
/** Interpret |bounds| as a bias. */ | ||
kGMSAutocompleteBoundsModeBias, | ||
/** Interpret |bounds| as a restrict. */ | ||
kGMSAutocompleteBoundsModeRestrict | ||
}; | ||
|
||
NS_ASSUME_NONNULL_END; | ||
|
||
/**@}*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.