I have multiple flavors and trying to distribute them separately 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 have created two different organizations, built apps based on flavor and they are successfully added to the organizations. However distribution icon is being hidden in appOne flavour while working fine for appTwo flavor (as shown below):
I have 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 apps based on flavor?
