Fabric Beta release notes and Gradle Kotlin DSL
As stated here: https://docs.fabric.io/android/beta/gradle.html
I used to have this 2 lines in an Android app's build.gradle to upload builds to Fabric Beta with given release notes to given group aliases:
android {
defaultConfig {
ext.betaDistributionReleaseNotesFilePath = 'app/release_notes.txt'
ext.betaDistributionGroupAliasesFilePath = 'app/group_aliases.txt'
}
}
After...