Android 为com.google.common.util.concurrent等待了2分钟(加上5249400纳秒延迟)。SettableFuture@65b91722[状态=待定]

Android 为com.google.common.util.concurrent等待了2分钟(加上5249400纳秒延迟)。SettableFuture@65b91722[状态=待定],android,Android,几天前,我生成了一个已签名的apk,并将其发布在playstore上,但现在,我无法生成已签名的apk,我遇到了这个错误,我不知道如何修复它。请帮忙 [1] : My build.gradle(模块:应用程序) 安卓{ 编译DK29版 buildToolsVersion“29.0.3” } 依赖关系{ 实现文件树(目录:“libs”,包括:['*.jar']) }在添加了一些相对较大的图像资产后,我出现了这个问题。我最近在xxxdpi res文件夹中添加了一些10MB+的PNG。删除这些之后,这

几天前,我生成了一个已签名的apk,并将其发布在playstore上,但现在,我无法生成已签名的apk,我遇到了这个错误,我不知道如何修复它。请帮忙 [1] :

My build.gradle(模块:应用程序)

安卓{ 编译DK29版 buildToolsVersion“29.0.3”

}

依赖关系{ 实现文件树(目录:“libs”,包括:['*.jar'])


}

在添加了一些相对较大的图像资产后,我出现了这个问题。我最近在xxxdpi res文件夹中添加了一些10MB+的PNG。删除这些之后,这个问题就消失了

在添加了一些相对较大的图像资产之后,这个问题对我来说出现了。我最近在xxxdpi res文件夹中添加了一些10MB+的PNG。在移除这些之后,这个问题就消失了

apply plugin: 'com.android.application'
defaultConfig {
    applicationId "com.securesoft.lucid"
    minSdkVersion 16
    targetSdkVersion 29
    versionCode 4
    versionName "4"
    multiDexEnabled true
    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
    release {
        shrinkResources true
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
}
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.navigation:navigation-fragment:2.3.0'
implementation 'androidx.navigation:navigation-ui:2.3.0'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'com.intuit.sdp:sdp-android:1.0.6'

implementation 'com.google.android.gms:play-services-ads:19.4.0'
implementation 'com.google.android.gms:play-services-base:17.4.0'


testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'