How to distribute ios app after building with sksl in Flutter

Viewed 890

Following the instructions on sksl warmup running flutter build ios --bundle-sksl-path flutter_01.sksl.json produces a Runner.app.

I don't understand how to create an archive or an ipa using that build.

How can i distribute a release build with sksl cache?

1 Answers

Use the below command to create ios archive with shaders cache, which you can distribute on app store. visit here for more info on flutter official documentation

flutter build ipa --bundle-sksl-path flutter_01.sksl.json
Related