Last active
February 28, 2019 17:11
-
-
Save kenzieschmoll/15aee1e8e3fbab3ba25a6a3c9425bbfb to your computer and use it in GitHub Desktop.
maps sample - final AppDelegate.m
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
#include "AppDelegate.h" | |
#include "GeneratedPluginRegistrant.h" | |
// Add the GoogleMaps import. | |
#import "GoogleMaps/GoogleMaps.h" | |
@implementation AppDelegate | |
- (BOOL)application:(UIApplication *)application | |
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
// Add the following line with your API key. | |
[GMSServices provideAPIKey:@"YOUR KEY HERE"]; | |
[GeneratedPluginRegistrant registerWithRegistry:self]; | |
return [super application:application didFinishLaunchingWithOptions:launchOptions]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment