I was working on Firebase App Distribution using gradle.
I already followed all steps from this firebase official link and it still doesn't work.
When I run this ./gradlew assembleDemoDebug appDistributionUploadDemoDebug
, it always return this error App Distribution failed to fetch app information: [403] The caller does not have permission .
Here's my gradle settings.
buildTypes {
debug {
...
firebaseAppDistribution {
appId = "1:12345678:android:12345678abc"
releaseNotes = "test"
groups = "android-qa"
serviceCredentialsFile = "android-app-distribution-key.json"
}
}
I already contacted the google support team, but maybe you guys have a similar experience with this issue. Am I missing something here?
Thanks