在 Gradle 中添加 compile 'com.google.gdata:core:1.47.1' 会导致 OUT OF MEMORY 错误
Adding compile 'com.google.gdata:core:1.47.1' in Gradle causes OUT OF MEMORY error
这是我的 Gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.googleplus_1"
minSdkVersion 10
targetSdkVersion 21
versionCode 1
versionName "1.0"
multiDexEnabled = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.0.0'
compile 'com.google.gdata:core:1.47.1'
}
/*
configurations {
all*.exclude group: 'com.android.support'
}
configurations {
all*.exclude group: 'com.android.support', module: 'support-v4'
all*.exclude group: 'com.google.android.gms', module: 'play-services'
}*/
当我 运行 应用程序时,出现此错误:
UNEXPECTED TOP-LEVEL ERROR:
java.lang.OutOfMemoryError: Java heap space
但是,如果我评论 "compile 'com.google.gdata:core:1.47.1'" 和相关代码,错误就消失了。
你能帮我解决这个问题吗?谢谢
我看你导入了整个播放服务api。在文档中,它说您应该为您需要的特定 api 使用依赖项,例如 google 映射 api。
http://developer.android.com/google/play-services/setup.html
这是我的 Gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.googleplus_1"
minSdkVersion 10
targetSdkVersion 21
versionCode 1
versionName "1.0"
multiDexEnabled = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.0.0'
compile 'com.google.gdata:core:1.47.1'
}
/*
configurations {
all*.exclude group: 'com.android.support'
}
configurations {
all*.exclude group: 'com.android.support', module: 'support-v4'
all*.exclude group: 'com.google.android.gms', module: 'play-services'
}*/
当我 运行 应用程序时,出现此错误:
UNEXPECTED TOP-LEVEL ERROR:
java.lang.OutOfMemoryError: Java heap space
但是,如果我评论 "compile 'com.google.gdata:core:1.47.1'" 和相关代码,错误就消失了。
你能帮我解决这个问题吗?谢谢
我看你导入了整个播放服务api。在文档中,它说您应该为您需要的特定 api 使用依赖项,例如 google 映射 api。
http://developer.android.com/google/play-services/setup.html