Android Studio(3.4.1)在构建签名的APK时会阻塞
我已经等待了超过 40分钟来构建APK,但是Android Studio无法前进,它卡住了:
Android Studio陷入了此任务:
app: transformClassesAndResourcesWithR7ForRelease
这是我的build.gradle文件的结构:
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.firebase.firebase-perf'
android {
compileSdkVersion 29
buildToolsVersion = '29.0.0 rc2'
defaultConfig {
applicationId "com.raven.okami"
minSdkVersion 23
targetSdkVersion 29
versionCode 10
versionName "1.9.6.29"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lintOptions {
disable "FirestoreAdapterMissingStartListeningMethod",
"FirestoreAdapterMissingStopListeningMethod"
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
implementation 'androidx.paging:paging-runtime:2.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0-alpha06'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "androidx.lifecycle:lifecycle-extensions:2.0.0"
*// More dependecies*
}
apply plugin: 'com.google.gms.google-services'
请,有人帮助我。
编辑:我正在调查Android Studio项目中的试验和错误,发现了一些有趣的东西。我发现这一切都是由于Firebase Perfomance造成的,为什么我只需删除此依赖项,并在最多3分钟的时间内完成项目的编译。
有人知道为什么会这样吗?您知道如何避免这种情况吗?我需要使用Firebase性能。
答案 0 :(得分:0)
尝试文件>使高速缓存无效并重新启动。 Android Studio会缓存很多文件,而实际上并不会清除它们,因此随着时间的流逝,它可能会陷入困境,并使gradle和apk生成等操作变得非常缓慢。