I have several flavors and distributing them individually using Beta Distribution :
productFlavors { appOne{ applicationId 'com.example.appOne' manifestPlaceholders = [ appName: "AppOne", fabricApiKey: "AppOne APi Key"] } appTwo{ applicationId 'com.example.appTwo' manifestPlaceholders = [ appName: "AppTwo", fabricApiKey: "AppTwo APi Key"] }
AndroidManifest:
<meta-data android:name="io.fabric.ApiKey" android:value="${fabricApiKey}" />
I created two different organizations, built flavor based applications, and they were successfully added to the organization. However, the distribution icon is hidden in appOne flavour , working fine for appTwo flavor (as shown below):

I also tried the old way (generating fabric.properties while build ) without any success: Link 1 and Link 2 .
Is there a way that I can distribute multiple flavor based applications?
source share