Rename google_mobile_maps to google_maps_flutter (#518)

diff --git a/packages/google_mobile_maps/.gitignore b/packages/google_maps_flutter/.gitignore
similarity index 100%
rename from packages/google_mobile_maps/.gitignore
rename to packages/google_maps_flutter/.gitignore
diff --git a/packages/google_mobile_maps/CHANGELOG.md b/packages/google_maps_flutter/CHANGELOG.md
similarity index 100%
rename from packages/google_mobile_maps/CHANGELOG.md
rename to packages/google_maps_flutter/CHANGELOG.md
diff --git a/packages/google_mobile_maps/LICENSE b/packages/google_maps_flutter/LICENSE
similarity index 100%
rename from packages/google_mobile_maps/LICENSE
rename to packages/google_maps_flutter/LICENSE
diff --git a/packages/google_maps_flutter/README.md b/packages/google_maps_flutter/README.md
new file mode 100644
index 0000000..0302726
--- /dev/null
+++ b/packages/google_maps_flutter/README.md
@@ -0,0 +1,15 @@
+# Google Maps for Flutter
+
+[![pub package](https://img.shields.io/pub/v/google_maps_flutter.svg)](https://pub.dartlang.org/packages/google_maps_flutter)
+
+A Flutter plugin to use [Google Maps](https://developers.google.com/maps/) for iOS and Android.
+
+*Note*: This plugin is currently a stub and under active development.
+
+## Usage
+
+To use this plugin, add `google_maps_flutter` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
+
+## Getting Started
+
+See the `example` directory for a complete sample app using Google Maps.
diff --git a/packages/google_mobile_maps/android/.gitignore b/packages/google_maps_flutter/android/.gitignore
similarity index 100%
rename from packages/google_mobile_maps/android/.gitignore
rename to packages/google_maps_flutter/android/.gitignore
diff --git a/packages/google_mobile_maps/android/build.gradle b/packages/google_maps_flutter/android/build.gradle
similarity index 93%
rename from packages/google_mobile_maps/android/build.gradle
rename to packages/google_maps_flutter/android/build.gradle
index 55ecf91..f909d10 100644
--- a/packages/google_mobile_maps/android/build.gradle
+++ b/packages/google_maps_flutter/android/build.gradle
@@ -1,4 +1,4 @@
-group 'io.flutter.plugins.googlemobilemaps'
+group 'io.flutter.plugins.googlemaps'
 version '1.0-SNAPSHOT'
 
 buildscript {
diff --git a/packages/google_mobile_maps/android/gradle.properties b/packages/google_maps_flutter/android/gradle.properties
similarity index 100%
rename from packages/google_mobile_maps/android/gradle.properties
rename to packages/google_maps_flutter/android/gradle.properties
diff --git a/packages/google_maps_flutter/android/settings.gradle b/packages/google_maps_flutter/android/settings.gradle
new file mode 100644
index 0000000..dbceadf
--- /dev/null
+++ b/packages/google_maps_flutter/android/settings.gradle
@@ -0,0 +1 @@
+rootProject.name = 'google_maps_flutter'
diff --git a/packages/google_mobile_maps/android/src/main/AndroidManifest.xml b/packages/google_maps_flutter/android/src/main/AndroidManifest.xml
similarity index 62%
rename from packages/google_mobile_maps/android/src/main/AndroidManifest.xml
rename to packages/google_maps_flutter/android/src/main/AndroidManifest.xml
index e42e96d..d188669 100644
--- a/packages/google_mobile_maps/android/src/main/AndroidManifest.xml
+++ b/packages/google_maps_flutter/android/src/main/AndroidManifest.xml
@@ -1,3 +1,3 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-  package="io.flutter.plugins.googlemobilemaps">
+  package="io.flutter.plugins.googlemaps">
 </manifest>
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/Convert.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/Convert.java
similarity index 99%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/Convert.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/Convert.java
index 5e24cff..968bccc 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/Convert.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/Convert.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import android.graphics.Point;
 import com.google.android.gms.maps.CameraUpdate;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapBuilder.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapBuilder.java
similarity index 97%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapBuilder.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapBuilder.java
index 87ac319..8920838 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapBuilder.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapBuilder.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.GoogleMapOptions;
 import com.google.android.gms.maps.model.CameraPosition;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapController.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapController.java
similarity index 95%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapController.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapController.java
index 3f6114d..935e9a5 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapController.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapController.java
@@ -2,13 +2,13 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
-import static io.flutter.plugins.googlemobilemaps.GoogleMobileMapsPlugin.CREATED;
-import static io.flutter.plugins.googlemobilemaps.GoogleMobileMapsPlugin.PAUSED;
-import static io.flutter.plugins.googlemobilemaps.GoogleMobileMapsPlugin.RESUMED;
-import static io.flutter.plugins.googlemobilemaps.GoogleMobileMapsPlugin.STARTED;
-import static io.flutter.plugins.googlemobilemaps.GoogleMobileMapsPlugin.STOPPED;
+import static io.flutter.plugins.googlemaps.GoogleMapsPlugin.CREATED;
+import static io.flutter.plugins.googlemaps.GoogleMapsPlugin.PAUSED;
+import static io.flutter.plugins.googlemaps.GoogleMapsPlugin.RESUMED;
+import static io.flutter.plugins.googlemaps.GoogleMapsPlugin.STARTED;
+import static io.flutter.plugins.googlemaps.GoogleMapsPlugin.STOPPED;
 
 import android.app.Activity;
 import android.app.Application;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapOptionsSink.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapOptionsSink.java
similarity index 95%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapOptionsSink.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapOptionsSink.java
index 6eb764d..74b412c 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMapOptionsSink.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapOptionsSink.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.model.CameraPosition;
 import com.google.android.gms.maps.model.LatLngBounds;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMobileMapsPlugin.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapsPlugin.java
similarity index 95%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMobileMapsPlugin.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapsPlugin.java
index 542f1aa..3b54a2e 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/GoogleMobileMapsPlugin.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/GoogleMapsPlugin.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import android.app.Activity;
 import android.app.Application;
@@ -26,8 +26,7 @@
  * the map. A Texture drawn using GoogleMap bitmap snapshots can then be shown instead of the
  * overlay.
  */
-public class GoogleMobileMapsPlugin
-    implements MethodCallHandler, Application.ActivityLifecycleCallbacks {
+public class GoogleMapsPlugin implements MethodCallHandler, Application.ActivityLifecycleCallbacks {
   static final int CREATED = 1;
   static final int STARTED = 2;
   static final int RESUMED = 3;
@@ -41,13 +40,13 @@
 
   public static void registerWith(Registrar registrar) {
     final MethodChannel channel =
-        new MethodChannel(registrar.messenger(), "plugins.flutter.io/google_mobile_maps");
-    final GoogleMobileMapsPlugin plugin = new GoogleMobileMapsPlugin(registrar, channel);
+        new MethodChannel(registrar.messenger(), "plugins.flutter.io/google_maps");
+    final GoogleMapsPlugin plugin = new GoogleMapsPlugin(registrar, channel);
     channel.setMethodCallHandler(plugin);
     registrar.activity().getApplication().registerActivityLifecycleCallbacks(plugin);
   }
 
-  private GoogleMobileMapsPlugin(Registrar registrar, MethodChannel channel) {
+  private GoogleMapsPlugin(Registrar registrar, MethodChannel channel) {
     this.registrar = registrar;
     this.channel = channel;
   }
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerBuilder.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerBuilder.java
similarity index 97%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerBuilder.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerBuilder.java
index dc06eb7..11e7b5b 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerBuilder.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerBuilder.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.model.BitmapDescriptor;
 import com.google.android.gms.maps.model.LatLng;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerController.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerController.java
similarity index 97%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerController.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerController.java
index bd6e660..d861a64 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerController.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerController.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.model.BitmapDescriptor;
 import com.google.android.gms.maps.model.LatLng;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerOptionsSink.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerOptionsSink.java
similarity index 94%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerOptionsSink.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerOptionsSink.java
index 7499e40..244a864 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/MarkerOptionsSink.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/MarkerOptionsSink.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.model.BitmapDescriptor;
 import com.google.android.gms.maps.model.LatLng;
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/OnCameraMoveListener.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/OnCameraMoveListener.java
similarity index 88%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/OnCameraMoveListener.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/OnCameraMoveListener.java
index 671c9f2..ba9bf44 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/OnCameraMoveListener.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/OnCameraMoveListener.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.model.CameraPosition;
 
diff --git a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/OnMarkerTappedListener.java b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/OnMarkerTappedListener.java
similarity index 86%
rename from packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/OnMarkerTappedListener.java
rename to packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/OnMarkerTappedListener.java
index ce9319c..1315f52 100644
--- a/packages/google_mobile_maps/android/src/main/java/io/flutter/plugins/googlemobilemaps/OnMarkerTappedListener.java
+++ b/packages/google_maps_flutter/android/src/main/java/io/flutter/plugins/googlemaps/OnMarkerTappedListener.java
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-package io.flutter.plugins.googlemobilemaps;
+package io.flutter.plugins.googlemaps;
 
 import com.google.android.gms.maps.model.Marker;
 
diff --git a/packages/google_mobile_maps/example/.gitignore b/packages/google_maps_flutter/example/.gitignore
similarity index 100%
rename from packages/google_mobile_maps/example/.gitignore
rename to packages/google_maps_flutter/example/.gitignore
diff --git a/packages/google_mobile_maps/example/.metadata b/packages/google_maps_flutter/example/.metadata
similarity index 100%
rename from packages/google_mobile_maps/example/.metadata
rename to packages/google_maps_flutter/example/.metadata
diff --git a/packages/google_maps_flutter/example/README.md b/packages/google_maps_flutter/example/README.md
new file mode 100644
index 0000000..8003873
--- /dev/null
+++ b/packages/google_maps_flutter/example/README.md
@@ -0,0 +1,8 @@
+# google_maps_flutter_example
+
+Demonstrates how to use the google_maps_flutter plugin.
+
+## Getting Started
+
+For help getting started with Flutter, view our online
+[documentation](https://flutter.io/).
diff --git a/packages/google_mobile_maps/example/android.iml b/packages/google_maps_flutter/example/android.iml
similarity index 100%
rename from packages/google_mobile_maps/example/android.iml
rename to packages/google_maps_flutter/example/android.iml
diff --git a/packages/google_mobile_maps/example/android/.gitignore b/packages/google_maps_flutter/example/android/.gitignore
similarity index 100%
rename from packages/google_mobile_maps/example/android/.gitignore
rename to packages/google_maps_flutter/example/android/.gitignore
diff --git a/packages/google_mobile_maps/example/android/app/build.gradle b/packages/google_maps_flutter/example/android/app/build.gradle
similarity index 95%
rename from packages/google_mobile_maps/example/android/app/build.gradle
rename to packages/google_maps_flutter/example/android/app/build.gradle
index 51796a1..cccfe28 100644
--- a/packages/google_mobile_maps/example/android/app/build.gradle
+++ b/packages/google_maps_flutter/example/android/app/build.gradle
@@ -22,7 +22,7 @@
     }
 
     defaultConfig {
-        applicationId "io.flutter.plugins.googlemobilemapsexample"
+        applicationId "io.flutter.plugins.googlemapsexample"
         minSdkVersion 16
         targetSdkVersion 27
         versionCode 1
diff --git a/packages/google_mobile_maps/example/android/app/src/main/AndroidManifest.xml b/packages/google_maps_flutter/example/android/app/src/main/AndroidManifest.xml
similarity index 92%
rename from packages/google_mobile_maps/example/android/app/src/main/AndroidManifest.xml
rename to packages/google_maps_flutter/example/android/app/src/main/AndroidManifest.xml
index 04af437..0976e0f 100644
--- a/packages/google_mobile_maps/example/android/app/src/main/AndroidManifest.xml
+++ b/packages/google_maps_flutter/example/android/app/src/main/AndroidManifest.xml
@@ -1,11 +1,11 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="io.flutter.plugins.googlemobilemapsexample">
+    package="io.flutter.plugins.googlemapsexample">
 
     <uses-permission android:name="android.permission.INTERNET"/>
 
     <application
         android:name="io.flutter.app.FlutterApplication"
-        android:label="google_mobile_maps_example"
+        android:label="google_maps_flutter_example"
         android:icon="@mipmap/ic_launcher">
         <meta-data
             android:name="com.google.android.gms.version"
diff --git a/packages/google_mobile_maps/example/android/app/src/main/java/io/flutter/plugins/googlemobilemapsexample/MainActivity.java b/packages/google_maps_flutter/example/android/app/src/main/java/io/flutter/plugins/googlemapsexample/MainActivity.java
similarity index 86%
rename from packages/google_mobile_maps/example/android/app/src/main/java/io/flutter/plugins/googlemobilemapsexample/MainActivity.java
rename to packages/google_maps_flutter/example/android/app/src/main/java/io/flutter/plugins/googlemapsexample/MainActivity.java
index 3528a0f..80a7946 100644
--- a/packages/google_mobile_maps/example/android/app/src/main/java/io/flutter/plugins/googlemobilemapsexample/MainActivity.java
+++ b/packages/google_maps_flutter/example/android/app/src/main/java/io/flutter/plugins/googlemapsexample/MainActivity.java
@@ -1,4 +1,4 @@
-package io.flutter.plugins.googlemobilemapsexample;
+package io.flutter.plugins.googlemapsexample;
 
 import android.os.Bundle;
 import io.flutter.app.FlutterActivity;
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/drawable/launch_background.xml b/packages/google_maps_flutter/example/android/app/src/main/res/drawable/launch_background.xml
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/drawable/launch_background.xml
rename to packages/google_maps_flutter/example/android/app/src/main/res/drawable/launch_background.xml
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/google_maps_flutter/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
rename to packages/google_maps_flutter/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/google_maps_flutter/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
rename to packages/google_maps_flutter/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/packages/google_maps_flutter/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
rename to packages/google_maps_flutter/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/google_maps_flutter/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
rename to packages/google_maps_flutter/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/google_maps_flutter/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
rename to packages/google_maps_flutter/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/android/app/src/main/res/values/styles.xml b/packages/google_maps_flutter/example/android/app/src/main/res/values/styles.xml
similarity index 100%
rename from packages/google_mobile_maps/example/android/app/src/main/res/values/styles.xml
rename to packages/google_maps_flutter/example/android/app/src/main/res/values/styles.xml
diff --git a/packages/google_mobile_maps/example/android/build.gradle b/packages/google_maps_flutter/example/android/build.gradle
similarity index 100%
rename from packages/google_mobile_maps/example/android/build.gradle
rename to packages/google_maps_flutter/example/android/build.gradle
diff --git a/packages/google_mobile_maps/example/android/gradle.properties b/packages/google_maps_flutter/example/android/gradle.properties
similarity index 100%
rename from packages/google_mobile_maps/example/android/gradle.properties
rename to packages/google_maps_flutter/example/android/gradle.properties
diff --git a/packages/google_mobile_maps/example/android/gradle/wrapper/gradle-wrapper.properties b/packages/google_maps_flutter/example/android/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from packages/google_mobile_maps/example/android/gradle/wrapper/gradle-wrapper.properties
rename to packages/google_maps_flutter/example/android/gradle/wrapper/gradle-wrapper.properties
diff --git a/packages/google_mobile_maps/example/android/settings.gradle b/packages/google_maps_flutter/example/android/settings.gradle
similarity index 100%
rename from packages/google_mobile_maps/example/android/settings.gradle
rename to packages/google_maps_flutter/example/android/settings.gradle
diff --git a/packages/google_mobile_maps/example/google_mobile_maps_example.iml b/packages/google_maps_flutter/example/google_maps_flutter_example.iml
similarity index 100%
rename from packages/google_mobile_maps/example/google_mobile_maps_example.iml
rename to packages/google_maps_flutter/example/google_maps_flutter_example.iml
diff --git a/packages/google_mobile_maps/example/google_mobile_maps_example_android.iml b/packages/google_maps_flutter/example/google_maps_flutter_example_android.iml
similarity index 100%
rename from packages/google_mobile_maps/example/google_mobile_maps_example_android.iml
rename to packages/google_maps_flutter/example/google_maps_flutter_example_android.iml
diff --git a/packages/google_mobile_maps/example/ios/.gitignore b/packages/google_maps_flutter/example/ios/.gitignore
similarity index 100%
rename from packages/google_mobile_maps/example/ios/.gitignore
rename to packages/google_maps_flutter/example/ios/.gitignore
diff --git a/packages/google_mobile_maps/example/ios/Flutter/AppFrameworkInfo.plist b/packages/google_maps_flutter/example/ios/Flutter/AppFrameworkInfo.plist
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Flutter/AppFrameworkInfo.plist
rename to packages/google_maps_flutter/example/ios/Flutter/AppFrameworkInfo.plist
diff --git a/packages/google_mobile_maps/example/ios/Flutter/Debug.xcconfig b/packages/google_maps_flutter/example/ios/Flutter/Debug.xcconfig
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Flutter/Debug.xcconfig
rename to packages/google_maps_flutter/example/ios/Flutter/Debug.xcconfig
diff --git a/packages/google_mobile_maps/example/ios/Flutter/Release.xcconfig b/packages/google_maps_flutter/example/ios/Flutter/Release.xcconfig
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Flutter/Release.xcconfig
rename to packages/google_maps_flutter/example/ios/Flutter/Release.xcconfig
diff --git a/packages/google_mobile_maps/example/ios/Runner.xcodeproj/project.pbxproj b/packages/google_maps_flutter/example/ios/Runner.xcodeproj/project.pbxproj
similarity index 87%
rename from packages/google_mobile_maps/example/ios/Runner.xcodeproj/project.pbxproj
rename to packages/google_maps_flutter/example/ios/Runner.xcodeproj/project.pbxproj
index 3c587e3..64d214a 100644
--- a/packages/google_mobile_maps/example/ios/Runner.xcodeproj/project.pbxproj
+++ b/packages/google_maps_flutter/example/ios/Runner.xcodeproj/project.pbxproj
@@ -12,6 +12,7 @@
 		3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
 		3B80C3941E831B6300D905FE /* App.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; };
 		3B80C3951E831B6300D905FE /* App.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3B80C3931E831B6300D905FE /* App.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
+		4510D964F3B1259FEDD3ABA6 /* libPods-Runner.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7755F8F4BABC3D6A0BD4048B /* libPods-Runner.a */; };
 		9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; };
 		9705A1C71CF904A300538489 /* Flutter.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 9740EEBA1CF902C7004384FC /* Flutter.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
 		9740EEB41CF90195004384FC /* Debug.xcconfig in Resources */ = {isa = PBXBuildFile; fileRef = 9740EEB21CF90195004384FC /* Debug.xcconfig */; };
@@ -44,6 +45,7 @@
 		2D5378251FAA1A9400D5DBA9 /* flutter_assets */ = {isa = PBXFileReference; lastKnownFileType = folder; name = flutter_assets; path = Flutter/flutter_assets; sourceTree = SOURCE_ROOT; };
 		3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
 		3B80C3931E831B6300D905FE /* App.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = App.framework; path = Flutter/App.framework; sourceTree = "<group>"; };
+		7755F8F4BABC3D6A0BD4048B /* libPods-Runner.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Runner.a"; sourceTree = BUILT_PRODUCTS_DIR; };
 		7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
 		7AFFD8ED1D35381100E5BB4D /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
 		7AFFD8EE1D35381100E5BB4D /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
@@ -65,12 +67,21 @@
 			files = (
 				9705A1C61CF904A100538489 /* Flutter.framework in Frameworks */,
 				3B80C3941E831B6300D905FE /* App.framework in Frameworks */,
+				4510D964F3B1259FEDD3ABA6 /* libPods-Runner.a in Frameworks */,
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 		};
 /* End PBXFrameworksBuildPhase section */
 
 /* Begin PBXGroup section */
+		1E7CF0857EFC88FC263CF3B2 /* Frameworks */ = {
+			isa = PBXGroup;
+			children = (
+				7755F8F4BABC3D6A0BD4048B /* libPods-Runner.a */,
+			);
+			name = Frameworks;
+			sourceTree = "<group>";
+		};
 		9740EEB11CF90186004384FC /* Flutter */ = {
 			isa = PBXGroup;
 			children = (
@@ -91,7 +102,8 @@
 				9740EEB11CF90186004384FC /* Flutter */,
 				97C146F01CF9000F007C117D /* Runner */,
 				97C146EF1CF9000F007C117D /* Products */,
-				CF3B75C9A7D2FA2A4C99F110 /* Frameworks */,
+				A189CFE5474BF8A07908B2E0 /* Pods */,
+				1E7CF0857EFC88FC263CF3B2 /* Frameworks */,
 			);
 			sourceTree = "<group>";
 		};
@@ -127,6 +139,13 @@
 			name = "Supporting Files";
 			sourceTree = "<group>";
 		};
+		A189CFE5474BF8A07908B2E0 /* Pods */ = {
+			isa = PBXGroup;
+			children = (
+			);
+			name = Pods;
+			sourceTree = "<group>";
+		};
 /* End PBXGroup section */
 
 /* Begin PBXNativeTarget section */
@@ -134,12 +153,14 @@
 			isa = PBXNativeTarget;
 			buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
 			buildPhases = (
+				74BF216DF17B0C7F983459BD /* [CP] Check Pods Manifest.lock */,
 				9740EEB61CF901F6004384FC /* Run Script */,
 				97C146EA1CF9000F007C117D /* Sources */,
 				97C146EB1CF9000F007C117D /* Frameworks */,
 				97C146EC1CF9000F007C117D /* Resources */,
 				9705A1C41CF9048500538489 /* Embed Frameworks */,
 				3B06AD1E1E4923F5004D2608 /* Thin Binary */,
+				FE7DE34E225BB9A5F4DB58C6 /* [CP] Embed Pods Frameworks */,
 			);
 			buildRules = (
 			);
@@ -214,6 +235,24 @@
 			shellPath = /bin/sh;
 			shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" thin";
 		};
+		74BF216DF17B0C7F983459BD /* [CP] Check Pods Manifest.lock */ = {
+			isa = PBXShellScriptBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+			);
+			inputPaths = (
+				"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
+				"${PODS_ROOT}/Manifest.lock",
+			);
+			name = "[CP] Check Pods Manifest.lock";
+			outputPaths = (
+				"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
+			showEnvVarsInLog = 0;
+		};
 		9740EEB61CF901F6004384FC /* Run Script */ = {
 			isa = PBXShellScriptBuildPhase;
 			buildActionMask = 2147483647;
@@ -228,6 +267,24 @@
 			shellPath = /bin/sh;
 			shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
 		};
+		FE7DE34E225BB9A5F4DB58C6 /* [CP] Embed Pods Frameworks */ = {
+			isa = PBXShellScriptBuildPhase;
+			buildActionMask = 2147483647;
+			files = (
+			);
+			inputPaths = (
+				"${SRCROOT}/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh",
+				"${PODS_ROOT}/.symlinks/flutter/ios/Flutter.framework",
+			);
+			name = "[CP] Embed Pods Frameworks";
+			outputPaths = (
+				"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Flutter.framework",
+			);
+			runOnlyForDeploymentPostprocessing = 0;
+			shellPath = /bin/sh;
+			shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
+			showEnvVarsInLog = 0;
+		};
 /* End PBXShellScriptBuildPhase section */
 
 /* Begin PBXSourcesBuildPhase section */
diff --git a/packages/google_mobile_maps/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/packages/google_maps_flutter/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
rename to packages/google_maps_flutter/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata
diff --git a/packages/google_mobile_maps/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/packages/google_maps_flutter/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
rename to packages/google_maps_flutter/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme
diff --git a/packages/google_mobile_maps/example/ios/Runner.xcworkspace/contents.xcworkspacedata b/packages/google_maps_flutter/example/ios/Runner.xcworkspace/contents.xcworkspacedata
similarity index 67%
rename from packages/google_mobile_maps/example/ios/Runner.xcworkspace/contents.xcworkspacedata
rename to packages/google_maps_flutter/example/ios/Runner.xcworkspace/contents.xcworkspacedata
index 1d526a1..21a3cc1 100644
--- a/packages/google_mobile_maps/example/ios/Runner.xcworkspace/contents.xcworkspacedata
+++ b/packages/google_maps_flutter/example/ios/Runner.xcworkspace/contents.xcworkspacedata
@@ -4,4 +4,7 @@
    <FileRef
       location = "group:Runner.xcodeproj">
    </FileRef>
+   <FileRef
+      location = "group:Pods/Pods.xcodeproj">
+   </FileRef>
 </Workspace>
diff --git a/packages/google_mobile_maps/example/ios/Runner/AppDelegate.h b/packages/google_maps_flutter/example/ios/Runner/AppDelegate.h
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/AppDelegate.h
rename to packages/google_maps_flutter/example/ios/Runner/AppDelegate.h
diff --git a/packages/google_mobile_maps/example/ios/Runner/AppDelegate.m b/packages/google_maps_flutter/example/ios/Runner/AppDelegate.m
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/AppDelegate.m
rename to packages/google_maps_flutter/example/ios/Runner/AppDelegate.m
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
Binary files differ
diff --git a/packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
rename to packages/google_maps_flutter/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md
diff --git a/packages/google_mobile_maps/example/ios/Runner/Base.lproj/LaunchScreen.storyboard b/packages/google_maps_flutter/example/ios/Runner/Base.lproj/LaunchScreen.storyboard
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Base.lproj/LaunchScreen.storyboard
rename to packages/google_maps_flutter/example/ios/Runner/Base.lproj/LaunchScreen.storyboard
diff --git a/packages/google_mobile_maps/example/ios/Runner/Base.lproj/Main.storyboard b/packages/google_maps_flutter/example/ios/Runner/Base.lproj/Main.storyboard
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/Base.lproj/Main.storyboard
rename to packages/google_maps_flutter/example/ios/Runner/Base.lproj/Main.storyboard
diff --git a/packages/google_mobile_maps/example/ios/Runner/Info.plist b/packages/google_maps_flutter/example/ios/Runner/Info.plist
similarity index 96%
rename from packages/google_mobile_maps/example/ios/Runner/Info.plist
rename to packages/google_maps_flutter/example/ios/Runner/Info.plist
index 2d4c24f..b3cff16 100644
--- a/packages/google_mobile_maps/example/ios/Runner/Info.plist
+++ b/packages/google_maps_flutter/example/ios/Runner/Info.plist
@@ -11,7 +11,7 @@
 	<key>CFBundleInfoDictionaryVersion</key>
 	<string>6.0</string>
 	<key>CFBundleName</key>
-	<string>google_mobile_maps_example</string>
+	<string>google_maps_flutter_example</string>
 	<key>CFBundlePackageType</key>
 	<string>APPL</string>
 	<key>CFBundleShortVersionString</key>
diff --git a/packages/google_mobile_maps/example/ios/Runner/main.m b/packages/google_maps_flutter/example/ios/Runner/main.m
similarity index 100%
rename from packages/google_mobile_maps/example/ios/Runner/main.m
rename to packages/google_maps_flutter/example/ios/Runner/main.m
diff --git a/packages/google_mobile_maps/example/lib/animate_camera.dart b/packages/google_maps_flutter/example/lib/animate_camera.dart
similarity index 98%
rename from packages/google_mobile_maps/example/lib/animate_camera.dart
rename to packages/google_maps_flutter/example/lib/animate_camera.dart
index abb9f1d..25a7769 100644
--- a/packages/google_mobile_maps/example/lib/animate_camera.dart
+++ b/packages/google_maps_flutter/example/lib/animate_camera.dart
@@ -3,7 +3,7 @@
 // found in the LICENSE file.
 
 import 'package:flutter/material.dart';
-import 'package:google_mobile_maps/google_mobile_maps.dart';
+import 'package:google_maps_flutter/google_maps_flutter.dart';
 
 import 'page.dart';
 
diff --git a/packages/google_mobile_maps/example/lib/main.dart b/packages/google_maps_flutter/example/lib/main.dart
similarity index 95%
rename from packages/google_mobile_maps/example/lib/main.dart
rename to packages/google_maps_flutter/example/lib/main.dart
index 63c28b4..de1affa 100644
--- a/packages/google_mobile_maps/example/lib/main.dart
+++ b/packages/google_maps_flutter/example/lib/main.dart
@@ -3,7 +3,7 @@
 // found in the LICENSE file.
 
 import 'package:flutter/material.dart';
-import 'package:google_mobile_maps/google_mobile_maps.dart';
+import 'package:google_maps_flutter/google_maps_flutter.dart';
 import 'animate_camera.dart';
 import 'map_ui.dart';
 import 'move_camera.dart';
diff --git a/packages/google_mobile_maps/example/lib/map_ui.dart b/packages/google_maps_flutter/example/lib/map_ui.dart
similarity index 98%
rename from packages/google_mobile_maps/example/lib/map_ui.dart
rename to packages/google_maps_flutter/example/lib/map_ui.dart
index 3fc73ec..64649aa 100644
--- a/packages/google_mobile_maps/example/lib/map_ui.dart
+++ b/packages/google_maps_flutter/example/lib/map_ui.dart
@@ -3,7 +3,7 @@
 // found in the LICENSE file.
 
 import 'package:flutter/material.dart';
-import 'package:google_mobile_maps/google_mobile_maps.dart';
+import 'package:google_maps_flutter/google_maps_flutter.dart';
 
 import 'page.dart';
 
diff --git a/packages/google_mobile_maps/example/lib/move_camera.dart b/packages/google_maps_flutter/example/lib/move_camera.dart
similarity index 98%
rename from packages/google_mobile_maps/example/lib/move_camera.dart
rename to packages/google_maps_flutter/example/lib/move_camera.dart
index 209d2bb..2675d6b 100644
--- a/packages/google_mobile_maps/example/lib/move_camera.dart
+++ b/packages/google_maps_flutter/example/lib/move_camera.dart
@@ -3,7 +3,7 @@
 // found in the LICENSE file.
 
 import 'package:flutter/material.dart';
-import 'package:google_mobile_maps/google_mobile_maps.dart';
+import 'package:google_maps_flutter/google_maps_flutter.dart';
 
 import 'page.dart';
 
diff --git a/packages/google_mobile_maps/example/lib/page.dart b/packages/google_maps_flutter/example/lib/page.dart
similarity index 85%
rename from packages/google_mobile_maps/example/lib/page.dart
rename to packages/google_maps_flutter/example/lib/page.dart
index 0971918..477e17a 100644
--- a/packages/google_mobile_maps/example/lib/page.dart
+++ b/packages/google_maps_flutter/example/lib/page.dart
@@ -3,7 +3,7 @@
 // found in the LICENSE file.
 
 import 'package:flutter/material.dart';
-import 'package:google_mobile_maps/google_mobile_maps.dart';
+import 'package:google_maps_flutter/google_maps_flutter.dart';
 
 abstract class Page extends StatelessWidget {
   const Page(this.leading, this.title);
diff --git a/packages/google_mobile_maps/example/lib/place_marker.dart b/packages/google_maps_flutter/example/lib/place_marker.dart
similarity index 98%
rename from packages/google_mobile_maps/example/lib/place_marker.dart
rename to packages/google_maps_flutter/example/lib/place_marker.dart
index 8551c3e..0476131 100644
--- a/packages/google_mobile_maps/example/lib/place_marker.dart
+++ b/packages/google_maps_flutter/example/lib/place_marker.dart
@@ -5,7 +5,7 @@
 import 'dart:math';
 
 import 'package:flutter/material.dart';
-import 'package:google_mobile_maps/google_mobile_maps.dart';
+import 'package:google_maps_flutter/google_maps_flutter.dart';
 
 import 'page.dart';
 
diff --git a/packages/google_mobile_maps/example/pubspec.yaml b/packages/google_maps_flutter/example/pubspec.yaml
similarity index 93%
rename from packages/google_mobile_maps/example/pubspec.yaml
rename to packages/google_maps_flutter/example/pubspec.yaml
index add28d1..f0f7e8b 100644
--- a/packages/google_mobile_maps/example/pubspec.yaml
+++ b/packages/google_maps_flutter/example/pubspec.yaml
@@ -1,5 +1,5 @@
-name: google_mobile_maps_example
-description: Demonstrates how to use the google_mobile_maps plugin.
+name: google_maps_flutter_example
+description: Demonstrates how to use the google_maps_flutter plugin.
 
 dependencies:
   flutter:
@@ -13,7 +13,7 @@
   flutter_test:
     sdk: flutter
 
-  google_mobile_maps:
+  google_maps_flutter:
     path: ../
 
 # For information on the generic Dart part of this file, see the
diff --git a/packages/google_mobile_maps/google_mobile_maps.iml b/packages/google_maps_flutter/google_mobile_maps.iml
similarity index 100%
rename from packages/google_mobile_maps/google_mobile_maps.iml
rename to packages/google_maps_flutter/google_mobile_maps.iml
diff --git a/packages/google_mobile_maps/google_mobile_maps_android.iml b/packages/google_maps_flutter/google_mobile_maps_android.iml
similarity index 100%
rename from packages/google_mobile_maps/google_mobile_maps_android.iml
rename to packages/google_maps_flutter/google_mobile_maps_android.iml
diff --git a/packages/google_mobile_maps/ios/.gitignore b/packages/google_maps_flutter/ios/.gitignore
similarity index 100%
rename from packages/google_mobile_maps/ios/.gitignore
rename to packages/google_maps_flutter/ios/.gitignore
diff --git a/packages/google_mobile_maps/ios/Assets/.gitkeep b/packages/google_maps_flutter/ios/Assets/.gitkeep
similarity index 100%
rename from packages/google_mobile_maps/ios/Assets/.gitkeep
rename to packages/google_maps_flutter/ios/Assets/.gitkeep
diff --git a/packages/google_maps_flutter/ios/Classes/GoogleMapsPlugin.h b/packages/google_maps_flutter/ios/Classes/GoogleMapsPlugin.h
new file mode 100644
index 0000000..ca63565
--- /dev/null
+++ b/packages/google_maps_flutter/ios/Classes/GoogleMapsPlugin.h
@@ -0,0 +1,4 @@
+#import <Flutter/Flutter.h>
+
+@interface FLTGoogleMapsPlugin : NSObject<FlutterPlugin>
+@end
diff --git a/packages/google_maps_flutter/ios/Classes/GoogleMapsPlugin.m b/packages/google_maps_flutter/ios/Classes/GoogleMapsPlugin.m
new file mode 100644
index 0000000..f3b2aef
--- /dev/null
+++ b/packages/google_maps_flutter/ios/Classes/GoogleMapsPlugin.m
@@ -0,0 +1,16 @@
+#import "GoogleMapsPlugin.h"
+
+@implementation FLTGoogleMapsPlugin
++ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
+  FlutterMethodChannel* channel =
+      [FlutterMethodChannel methodChannelWithName:@"plugins.flutter.io/google_maps"
+                                  binaryMessenger:[registrar messenger]];
+  FLTGoogleMapsPlugin* instance = [[FLTGoogleMapsPlugin alloc] init];
+  [registrar addMethodCallDelegate:instance channel:channel];
+}
+
+- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
+  result(FlutterMethodNotImplemented);
+}
+
+@end
diff --git a/packages/google_mobile_maps/ios/google_mobile_maps.podspec b/packages/google_maps_flutter/ios/google_maps_flutter.podspec
similarity index 92%
rename from packages/google_mobile_maps/ios/google_mobile_maps.podspec
rename to packages/google_maps_flutter/ios/google_maps_flutter.podspec
index 7c42f4c..4fb1d2e 100644
--- a/packages/google_mobile_maps/ios/google_mobile_maps.podspec
+++ b/packages/google_maps_flutter/ios/google_maps_flutter.podspec
@@ -2,7 +2,7 @@
 # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
 #
 Pod::Spec.new do |s|
-  s.name             = 'google_mobile_maps'
+  s.name             = 'google_maps_flutter'
   s.version          = '0.0.1'
   s.summary          = 'A new flutter plugin project.'
   s.description      = <<-DESC
diff --git a/packages/google_mobile_maps/lib/google_mobile_maps.dart b/packages/google_maps_flutter/lib/google_maps_flutter.dart
similarity index 94%
rename from packages/google_mobile_maps/lib/google_mobile_maps.dart
rename to packages/google_maps_flutter/lib/google_maps_flutter.dart
index a58533e..f07c568 100644
--- a/packages/google_mobile_maps/lib/google_mobile_maps.dart
+++ b/packages/google_maps_flutter/lib/google_maps_flutter.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-library google_mobile_maps;
+library google_maps_flutter;
 
 import 'dart:async';
 import 'dart:ui';
diff --git a/packages/google_mobile_maps/lib/src/bitmap.dart b/packages/google_maps_flutter/lib/src/bitmap.dart
similarity index 98%
rename from packages/google_mobile_maps/lib/src/bitmap.dart
rename to packages/google_maps_flutter/lib/src/bitmap.dart
index 658d68e..8140317 100644
--- a/packages/google_mobile_maps/lib/src/bitmap.dart
+++ b/packages/google_maps_flutter/lib/src/bitmap.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 /// Defines a bitmap image. For a marker, this class can be used to set the
 /// image of the marker icon. For a ground overlay, it can be used to set the
diff --git a/packages/google_mobile_maps/lib/src/callbacks.dart b/packages/google_maps_flutter/lib/src/callbacks.dart
similarity index 97%
rename from packages/google_mobile_maps/lib/src/callbacks.dart
rename to packages/google_maps_flutter/lib/src/callbacks.dart
index 82a9abe..eb2ab86 100644
--- a/packages/google_mobile_maps/lib/src/callbacks.dart
+++ b/packages/google_maps_flutter/lib/src/callbacks.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 /// Callback function taking a single argument.
 typedef void ArgumentCallback<T>(T argument);
diff --git a/packages/google_mobile_maps/lib/src/camera.dart b/packages/google_maps_flutter/lib/src/camera.dart
similarity index 98%
rename from packages/google_mobile_maps/lib/src/camera.dart
rename to packages/google_maps_flutter/lib/src/camera.dart
index 982bef7..525a278 100644
--- a/packages/google_mobile_maps/lib/src/camera.dart
+++ b/packages/google_maps_flutter/lib/src/camera.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 class CameraPosition {
   const CameraPosition({
diff --git a/packages/google_mobile_maps/lib/src/controller.dart b/packages/google_maps_flutter/lib/src/controller.dart
similarity index 98%
rename from packages/google_mobile_maps/lib/src/controller.dart
rename to packages/google_maps_flutter/lib/src/controller.dart
index a291840..81b8591 100644
--- a/packages/google_mobile_maps/lib/src/controller.dart
+++ b/packages/google_maps_flutter/lib/src/controller.dart
@@ -2,10 +2,10 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 final MethodChannel _channel =
-    const MethodChannel('plugins.flutter.io/google_mobile_maps');
+    const MethodChannel('plugins.flutter.io/google_maps');
 
 /// Controller for a single GoogleMap instance.
 ///
diff --git a/packages/google_mobile_maps/lib/src/location.dart b/packages/google_maps_flutter/lib/src/location.dart
similarity index 98%
rename from packages/google_mobile_maps/lib/src/location.dart
rename to packages/google_maps_flutter/lib/src/location.dart
index 4754008..f459d70 100644
--- a/packages/google_mobile_maps/lib/src/location.dart
+++ b/packages/google_maps_flutter/lib/src/location.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 /// A pair of latitude and longitude coordinates, stored as degrees.
 class LatLng {
diff --git a/packages/google_mobile_maps/lib/src/marker.dart b/packages/google_maps_flutter/lib/src/marker.dart
similarity index 98%
rename from packages/google_mobile_maps/lib/src/marker.dart
rename to packages/google_maps_flutter/lib/src/marker.dart
index a328978..a3f3379 100644
--- a/packages/google_mobile_maps/lib/src/marker.dart
+++ b/packages/google_maps_flutter/lib/src/marker.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 /// An icon placed at a particular point on the map's surface. A marker icon is
 /// drawn oriented against the device's screen rather than the map's surface;
diff --git a/packages/google_mobile_maps/lib/src/platform_overlay.dart b/packages/google_maps_flutter/lib/src/platform_overlay.dart
similarity index 99%
rename from packages/google_mobile_maps/lib/src/platform_overlay.dart
rename to packages/google_maps_flutter/lib/src/platform_overlay.dart
index 067fd67..2040884 100644
--- a/packages/google_mobile_maps/lib/src/platform_overlay.dart
+++ b/packages/google_maps_flutter/lib/src/platform_overlay.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 /// Controller of platform overlays, supporting a very limited form
 /// of compositing with Flutter Widgets.
diff --git a/packages/google_mobile_maps/lib/src/ui.dart b/packages/google_maps_flutter/lib/src/ui.dart
similarity index 99%
rename from packages/google_mobile_maps/lib/src/ui.dart
rename to packages/google_maps_flutter/lib/src/ui.dart
index 1323136..b528986 100644
--- a/packages/google_mobile_maps/lib/src/ui.dart
+++ b/packages/google_maps_flutter/lib/src/ui.dart
@@ -2,7 +2,7 @@
 // Use of this source code is governed by a BSD-style license that can be
 // found in the LICENSE file.
 
-part of google_mobile_maps;
+part of google_maps_flutter;
 
 /// Type of map tiles to display.
 ///
diff --git a/packages/google_mobile_maps/pubspec.yaml b/packages/google_maps_flutter/pubspec.yaml
similarity index 72%
rename from packages/google_mobile_maps/pubspec.yaml
rename to packages/google_maps_flutter/pubspec.yaml
index 3073bf8..de9140f 100644
--- a/packages/google_mobile_maps/pubspec.yaml
+++ b/packages/google_maps_flutter/pubspec.yaml
@@ -1,8 +1,8 @@
-name: google_mobile_maps
+name: google_maps_flutter
 description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
 version: 0.0.1
 author: Flutter Team <flutter-dev@googlegroups.com>
-homepage: https://github.com/flutter/plugins/tree/master/packages/google_mobile_maps
+homepage: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter
 
 dependencies:
   flutter:
@@ -10,9 +10,9 @@
 
 flutter:
   plugin:
-    androidPackage: io.flutter.plugins.googlemobilemaps
+    androidPackage: io.flutter.plugins.googlemaps
     iosPrefix: FLT
-    pluginClass: GoogleMobileMapsPlugin
+    pluginClass: GoogleMapsPlugin
 
 environment:
   sdk: ">=2.0.0-dev.28.0 <3.0.0"
diff --git a/packages/google_mobile_maps/README.md b/packages/google_mobile_maps/README.md
deleted file mode 100644
index 7dc0552..0000000
--- a/packages/google_mobile_maps/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# Google Maps for Flutter
-
-[![pub package](https://img.shields.io/pub/v/google_mobile_maps.svg)](https://pub.dartlang.org/packages/google_mobile_maps)
-
-A Flutter plugin to use [Google Maps](https://developers.google.com/maps/) for iOS and Android.
-
-*Note*: This plugin is currently a stub and under active development.
-
-## Usage
-
-To use this plugin, add `google_mobile_maps` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).
-
-## Getting Started
-
-See the `example` directory for a complete sample app using Google Maps.
diff --git a/packages/google_mobile_maps/android/settings.gradle b/packages/google_mobile_maps/android/settings.gradle
deleted file mode 100644
index 0728f86..0000000
--- a/packages/google_mobile_maps/android/settings.gradle
+++ /dev/null
@@ -1 +0,0 @@
-rootProject.name = 'google_mobile_maps'
diff --git a/packages/google_mobile_maps/example/README.md b/packages/google_mobile_maps/example/README.md
deleted file mode 100644
index d610971..0000000
--- a/packages/google_mobile_maps/example/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# google_mobile_maps_example
-
-Demonstrates how to use the google_mobile_maps plugin.
-
-## Getting Started
-
-For help getting started with Flutter, view our online
-[documentation](https://flutter.io/).
diff --git a/packages/google_mobile_maps/example/ios/Podfile b/packages/google_mobile_maps/example/ios/Podfile
deleted file mode 100644
index cdaa7b5..0000000
--- a/packages/google_mobile_maps/example/ios/Podfile
+++ /dev/null
@@ -1,64 +0,0 @@
-# Uncomment this line to define a global platform for your project
-# platform :ios, '9.0'
-
-# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
-ENV['COCOAPODS_DISABLE_STATS'] = 'true'
-
-def parse_KV_file(file, separator='=')
-  file_abs_path = File.expand_path(file)
-  if !File.exists? file_abs_path
-    return [];
-  end
-  pods_ary = []
-  skip_line_start_symbols = ["#", "/"]
-  File.foreach(file_abs_path) { |line|
-      next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ }
-      plugin = line.split(pattern=separator)
-      if plugin.length == 2
-        podname = plugin[0].strip()
-        path = plugin[1].strip()
-        podpath = File.expand_path("#{path}", file_abs_path)
-        pods_ary.push({:name => podname, :path => podpath});
-      else
-        puts "Invalid plugin specification: #{line}"
-      end
-  }
-  return pods_ary
-end
-
-target 'Runner' do
-  # Prepare symlinks folder. We use symlinks to avoid having Podfile.lock
-  # referring to absolute paths on developers' machines.
-  system('rm -rf Pods/.symlinks')
-  system('mkdir -p Pods/.symlinks/flutter')
-  system('mkdir -p Pods/.symlinks/plugins')
-
-  # Flutter Pods
-  generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
-  if generated_xcode_build_settings.empty?
-    puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first."
-  end
-  generated_xcode_build_settings.map { |p|
-    if p[:name] == 'FLUTTER_FRAMEWORK_DIR'
-      symlink = File.join('Pods', '.symlinks', 'flutter', File.basename(p[:path]))
-      File.symlink(p[:path], symlink)
-      pod 'Flutter', :path => symlink
-    end
-  }
-
-  # Plugin Pods
-  plugin_pods = parse_KV_file('../.flutter-plugins')
-  plugin_pods.map { |p|
-    symlink = File.join('Pods', '.symlinks', 'plugins', File.basename(p[:path]))
-    File.symlink(p[:path], symlink)
-    pod p[:name], :path => File.join(symlink, 'ios')
-  }
-end
-
-post_install do |installer|
-  installer.pods_project.targets.each do |target|
-    target.build_configurations.each do |config|
-      config.build_settings['ENABLE_BITCODE'] = 'NO'
-    end
-  end
-end
diff --git a/packages/google_mobile_maps/ios/Classes/GoogleMobileMapsPlugin.h b/packages/google_mobile_maps/ios/Classes/GoogleMobileMapsPlugin.h
deleted file mode 100644
index 3745da4..0000000
--- a/packages/google_mobile_maps/ios/Classes/GoogleMobileMapsPlugin.h
+++ /dev/null
@@ -1,4 +0,0 @@
-#import <Flutter/Flutter.h>
-
-@interface FLTGoogleMobileMapsPlugin : NSObject<FlutterPlugin>
-@end
diff --git a/packages/google_mobile_maps/ios/Classes/GoogleMobileMapsPlugin.m b/packages/google_mobile_maps/ios/Classes/GoogleMobileMapsPlugin.m
deleted file mode 100644
index f6a42fa..0000000
--- a/packages/google_mobile_maps/ios/Classes/GoogleMobileMapsPlugin.m
+++ /dev/null
@@ -1,20 +0,0 @@
-#import "GoogleMobileMapsPlugin.h"
-
-@implementation FLTGoogleMobileMapsPlugin
-+ (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
-  FlutterMethodChannel* channel =
-      [FlutterMethodChannel methodChannelWithName:@"google_mobile_maps"
-                                  binaryMessenger:[registrar messenger]];
-  FLTGoogleMobileMapsPlugin* instance = [[FLTGoogleMobileMapsPlugin alloc] init];
-  [registrar addMethodCallDelegate:instance channel:channel];
-}
-
-- (void)handleMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result {
-  if ([@"getPlatformVersion" isEqualToString:call.method]) {
-    result([@"iOS " stringByAppendingString:[[UIDevice currentDevice] systemVersion]]);
-  } else {
-    result(FlutterMethodNotImplemented);
-  }
-}
-
-@end