apply plugin: 'com.android.application'应用插件:'com.google.gms.google-services'
android {compileSdkVersion 23buildToolsVersion"23.0.0"
defaultConfig {
applicationId "com.xxxxx.xx.xx.xx.xxxxx"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "2g"
}
}
}
}
{的依赖关系testCompile"junit: junit: 4.12"testCompile org.robolectric: robolectric: 3.0"
compile files('libs/DTBSCommon.jar')
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.squareup.dagger:dagger-compiler:1.2.1'
compile 'com.android.support:design:23.1.1'
compile 'org.java-websocket:Java-WebSocket:1.3.0'
compile 'com.google.android.gms:play-services:8.3.0'
compile 'com.fasterxml.jackson.core:jackson-core:2.0.6'
compile 'com.fasterxml.jackson.core:jackson-annotations:2.0.6'
compile 'com.fasterxml.jackson.core:jackson-databind:2.0.6'
compile 'com.android.support:support-v4:23.1.1'
compile 'de.hdodenhof:circleimageview:2.0.0'
}
此错误是由于您的构建工具版本和compileSDKVersion。
这里有一个变通方法。
首先从SDK管理器下载并安装所有可用的更新。然后创建一个新项目。当你在当前的应用程序中使用google play services插件时,将google play services插件应用到新创建的项目中。
现在比较构建。gradle(Module App)对这两个应用程序进行修改,并在旧的项目构建中进行更改。gradle(模块应用程序)。还要将各种依赖项更新到最新版本。在做出更改后,同步gradle,它应该像魅力一样工作。