Is it possible to publish to testflight from a gra...
# multiplatform
a
Is it possible to publish to testflight from a gradle task fully automated? When building a compose multiplatform app?
c
If you write this task, of course. Is this task part of the KMP plugin, no.
👍 1
f
Use fastlane, it’s a better tool
a
@François do you know any good resources for using fastlane with Kotlin apps? I've been watching it for a long time and tested it for a couple simple things but I'm hoping to get screenshots and all going with KMP. I'd love to see an example workflow or learn and make a gradle plugin to simplify that for our team, but we'd be happy to share with anyone on that of course. All of our server projects use standard gradle plugins we developed to make workflow easier (load everything through our proxy repositories to track dependencies, standardize versions and libraries, simplify configuration etc. so KMP apps are a big, complex hole in that.
f
@Anonymike Fastlane is a tool dedicated for mobile delivery (iOS/Android/...), it doesn’t care your app is in KMP. Based on ruby, it has built-in lanes and community plugin and it easy to create your own lane.
a
@François I'm familiar with fastlane itself, but my primary concern is the hookins to do things like screenshots which I think required ios previews and such to get deeper screens etc. Have you been able to automate screenshots in addition to builds? While Ruby introduces some issues for us in our secure environments, we can work around it by using it primarily for testflight / release builds on a build machine. Thanks for the response!