android 已为com.google.common.util.concurrent.SettableFuture@65b91722等待2分钟(加上5249400纳秒延迟)[状态=挂起]

wgx48brx  于 2023-01-28  发布在  Android
关注(0)|答案(1)|浏览(133)

几天前,我生成了一个签名的APK并将其发布在Playstore上,但现在,我一直无法生成签名的APK,我得到了这个错误,我不知道如何解决这个问题.请帮助[1]:https://i.stack.imgur.com/XpPcl.png
My build.gradle(模块:应用程序)

apply plugin: 'com.android.application'

安卓系统{编译Sdk版本29构建工具版本“29.0.3”

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'
    }
}

}
相关性{实施文件树(目录:'库',包括:['*. jar'])

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'

}

bn31dyow

bn31dyow1#

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

相关问题