build.gradle file:
android {
compileSdkVersion 22
buildToolsVersion \"22.0.1\"
defaultConfig {
applicationId \"xxxxx.com.myapp\"
You are including libGoogleAnalyticsServices.jar twice. Based in the path, it will be include by the following line (which includes all jars in the libs directory) --
compile fileTree(dir: 'libs', include: ['*.jar'])
remove this line to avoid including the lib twice --
compile files('libs/libGoogleAnalyticsServices.jar')