Есть ли способ найти все доступные свойства и методы подключаемого модуля Gradle, или это полностью зависит от документации?
Мне не хватает команды или окна Gradle в Android Studio, которое показывает мне все доступные параметры? Без него мне практически пришлось бы догадываться ...
В этом конкретном случае я ищу дополнительную информацию о плагине Firebase Crashlytics Gradle.
com.google.firebase:firebase-crashlytics-gradle
Edit
Для большей ясности в следующем примере, взятом из Firebase docs , как мне узнать, какие методы я могу использовать в блоке firebaseCrashlytics
.
apply plugin: 'com.android.application'
apply plugin: 'com.google.firebase.crashlytics'
apply plugin: 'com.google.gms.google-services'
android {
// ...
buildTypes {
debug {
minifyEnabled true
firebaseCrashlytics {
// If you don't need crash reporting for your debug build,
// you can speed up your build by disabling mapping file uploading.
mappingFileUploadEnabled false
}
}
release {
minifyEnabled true
// When minifyEnabled is set to true, Crashlytics automatically
// uploads mapping files because the plugin detects that obfuscation
// is enabled. mappingFileUploadEnabled defaults to true if
// minifyEnabled is true.
}
}
}