Создание подписанного приложения для Android с помощью Android Studio 3.5.2 занимает более 20 минут.
Ниже мой модуль build.gradle
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
android {
compileSdkVersion 28
defaultConfig {
applicationId "my app id"
minSdkVersion 21
targetSdkVersion 28
versionCode 13
versionName "1.4.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
debuggable false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'android.arch.lifecycle:extensions:1.1.1'
implementation 'androidx.recyclerview:recyclerview:1.1.0-rc01'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'android.arch.paging:runtime:1.0.1'
implementation 'android.arch.lifecycle:extensions:1.1.1'
//google services
implementation 'com.google.android.gms:play-services-ads:18.3.0'
// Add the Firebase SDK for Google Analytics
implementation 'com.google.firebase:firebase-analytics:17.2.1'
// For example, to use Firebase Authentication and Cloud Firestore
implementation 'com.google.firebase:firebase-auth:19.1.0'
implementation 'com.google.firebase:firebase-firestore:21.2.1'
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
}
apply plugin: 'com.google.gms.google-services'
Я видел предложения, такие как удаление com.google.gms.google-services
, нов моем случае это нужно из-за Firebase.
я также включил org.gradle.parallel=true
в gradle.properties
, но проблема все еще сохраняется.
Перезапуск недействительного кэша Android-студии все еще занимает слишком много времени для ожидания.
Моя машина - Windows 10 RAM, 12 ГБ