我收到了abstractHttpContent.class的重复输入错误,它是app引擎的一部分。
我正在使用谷歌应用引擎后端。我也启用了multidex,没有multidex它给我一个方法超出错误。
这是我的app gradle文件
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.joseph.googlesign_in"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
dexOptions {
javaMaxHeapSize "4g"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.android.gms:play-services-auth:8.3.0'
compile project(path: ':gsiBackend', configuration: 'android-endpoints')
compile project(':gsiBackend')
}
这是我的后端gradle文件
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.google.appengine:gradle-appengine-plugin:1.9.18'
}
}
repositories {
jcenter();
}
apply plugin: 'java'
apply plugin: 'war'
apply plugin: 'appengine'
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
dependencies {
appengineSdk 'com.google.appengine:appengine-java-sdk:1.9.18'
compile 'com.google.appengine:appengine-endpoints:1.9.18'
compile 'com.google.appengine:appengine-endpoints-deps:1.9.18'
compile 'javax.servlet:servlet-api:2.5'
}
appengine {
downloadSdk = true
appcfg {
oauth2 = true
}
endpoints {
getClientLibsOnBuild = true
getDiscoveryDocsOnBuild = true
}
}
的位置
在添加Google Play服务以使用谷歌登录后,似乎错误开始了 有没有人遇到过这个构建错误?有关如何解决问题的建议吗? 感谢
答案 0 :(得分:1)
正如我们所讨论的,我相信Google play services 8.3
在google登录系统上做了一些更改。你可以在这里看看:
https://developers.google.com/android/guides/releases#november_2015_-_v83
所以我建议您尝试使用version 8.1
。
问题在于谷歌播放服务 这是顶级gradle文件
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:1.5.0-beta2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
更改以下内容 来自
classpath 'com.google.gms:google-services:1.5.0-beta2'
到
classpath 'com.google.gms:google-services:1.5.0'
此外,aapt.exe超时并显示错误 运行appt.exe文件,确保它正在运行,现在一切正常。
试图在禁用mulidex的情况下运行应用程序并且仍可正常运行
答案 1 :(得分:0)
问题在于谷歌播放服务 这是我的顶级gradle文件
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:1.5.0-beta2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
更改以下内容 来自
classpath 'com.google.gms:google-services:1.5.0-beta2'
到
classpath 'com.google.gms:google-services:1.5.0'
此外,aapt.exe超时并显示错误 我运行了appt.exe文件,以确保它正在运行,现在一切正常。
我还尝试在禁用mulidex的情况下运行该应用程序,它仍可正常运行