hello i am quite new to Android development and i want to learn how to use the google Maps API v2. After trying numerous tutorials, i always seem to have a problem with the goog
Eclipse
/extras/google/google_play_services/libproject/google-play-services_lib/
to the location where you maintain your Android app projects.
File > Import, select Android > Existing Android Code into Workspace
and browse to the copy of the library project to import it.
manifest file
and add the following tag as a child of the
element:< meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
Android Studio
build.gradle
file inside your application module directory. ... dependencies { compile 'com.google.android.gms:play-services:9.2.0' } apply plugin: 'com.android.application'
Source developers.google.com