Skip to content Skip to sidebar Skip to footer

Android Studio With Gradle And Google Maps V2

I'm really stuck here. So, I follow this tutorial step by step: but it still doesn't work. I've done all steps from tutorial and find out what new module(GooglePlayServices) not in

Solution 1:

try to avoid including entire google play services, it will force you to enable multidex due to the package size. instead, include them individually, eg:

compile'com.google.android.gms:play-services-maps:8.3.0'

if you wish to include other services, please refer here:

https://developers.google.com/android/guides/setup (scroll down)

Solution 2:

I have tried and failed many a tutorial on this, but finally find a simple solution that seem to work.

I just installed Android Studio 0.2.3 on my mac, and these are the steps that made me view a maps fragment on a fresh hello world project template:

1) Click the SDK manager button in the toolbar in Android Studio.

2) Under 'Extras' locate 'Google play services' and download it.

3) in your build.gradle file in your src directory, add this line to dependencies:

compile'com.google.android.gms:play-services:3.1.36'

4) order and install your API-key following this tutorial: https://developers.google.com/maps/documentation/android/start#the_google_maps_api_key

5) add the fragment to your layout xml:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/map"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:name="com.google.android.gms.maps.MapFragment"/>

6) you should now be able to run your project on your device.

Solution 3:

In SDK manager install these from Extras:

  • Android Support Repository
  • Google Repository
  • Google Play services

Then build.gradle should look like this:

buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.5.0'
    }
}
apply plugin: 'android'

dependencies {
    //compile files('libs/android-support-v4.jar')
    compile'com.google.android.gms:play-services:3.1.36'

}

android {
    compileSdkVersion 17
    buildToolsVersion "17.0.0"

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 14
    }
}

I also had to comment this line in build.gradle:

//compile files('libs/android-support-v4.jar')

More on this: https://plus.google.com/+AndroidDevelopers/posts/4Yhpn6p9icf

Post a Comment for "Android Studio With Gradle And Google Maps V2"