这是我的Gradle构建文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "problemio.com.problemionew"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}
我的应用程序编译好了,但是当我尝试运行它时,我收到了这个错误:
对这里出了什么问题的想法?我的机器是为Java 6设置的。当我尝试升级到Java 7时,我遇到了一些错误,所以我不得不恢复到Java 6。
答案 0 :(得分:1)
该错误是由编译中的问题引起的,这通常与重复的库或太多的方法和类有关。我想你在谷歌游戏服务中包括谷歌游戏服务。尝试使用此处的https://developers.google.com/android/guides/setup特定子库。
答案 1 :(得分:0)
此错误
关于使用的错误,并提供相同类别的参考。查看here