Skip to content

Instantly share code, notes, and snippets.

@Aditsyal
Created April 10, 2019 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aditsyal/e4e9054b84f691ebafd12f67dea1fea9 to your computer and use it in GitHub Desktop.
Save Aditsyal/e4e9054b84f691ebafd12f67dea1fea9 to your computer and use it in GitHub Desktop.
#include "AppDelegate.h"
#include "GeneratedPluginRegistrant.h"
#import "GoogleMaps/GoogleMaps.h"
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GMSServices provideAPIKey:@"YOUR IOS API 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