When I uses gradle command assembleAlpha crashlyticsUploadDistributionAlpha
on my android studio project and I installs the alpha version via Beta by Chrashlytics
app, the app name of my app isn't good.
On android studio I configured my project like that:
applicationId "com.mobile.example"
`
app
|-src
| |-beta
| | |-res
| | |-values
| | |-strings.xml (app_name 'Example Beta')
| |-main
| | |-res
| | |-values
| | |-strings.xml (app_name 'Example')
`
app.gradle:
`android {
...
buildTypes {
beta {
debug {
applicationIdSuffix ".debug"
buildConfigField "boolean", "REPORT_CRASHES", "false"
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
debuggable false
}
}
}
`
On fabric.io dashboard, the app name for com.mobile.example.beta is setted on Example Beta
and Example
for packageName: com.mobile.example
But when I download/install my app, the app name is always Example
Do you know what is wrong on my configuration?