Distributing tissue with Gradle not sending an invitation

I'm trying to distribute Android beta via tags following https://docs.fabric.io/android/beta/gradle.html .

After launch, the gradle assembleRelease crashlyticsUploadDistributionRelease

assembly was successfully loaded into the fabric, but the problem is that nobody was invited to be tested. Any settings I'm missing here? enter image description here

And this is my setting in the gradle file:

ext.enableCrashlytics = true
ext.betaDistributionReleaseNotes="Hello World"
ext.betaDistributionEmails="yzhong@gmail.com"

      

+3


source to share


1 answer


The settings should be under android> buildTypes> release as shown below:

android {
    buildTypes {
        release {
            signingConfig signingConfigs.release

            ext.betaDistributionReleaseNotes="Hello World"
            ext.betaDistributionEmails="yzhong@gmail.com"

      



🤔🤣

+3


source







All Articles