I am currently migrating to gradle kotlin dsl and ...
# gradle
b
I am currently migrating to gradle kotlin dsl and have a problem regarding firebase app distribution:
Copy code
android {
   buildTypes {
      create("foo") {
         firebaseAppDistribution { -> Unresolved reference!!!
            groups = "android_dev_nightly"
         }
      }
   }
}
is it possible to use the "firebaseAppDistribution" in a custom buildType with the new gradle kotlin dsl?