[英]Flutter: Building and distributing a .ipa File without Mac/Apple Developer Account?
I'm new to Flutter and Travis CI, so im having minor problems setting up the following.我是Flutter和Travis CI的新手,因此在设置以下内容时遇到了小问题。 From what i read, it should be possible, but im not sure how exactly.
从我读到的内容来看,这应该是可能的,但我不确定具体如何。
My current setup uses my existing Travis CI account, to build all my changes using flutter build ios --no-codesign
.我当前的设置使用我现有的Travis CI帐户,使用
flutter build ios --no-codesign
来构建所有更改。 This generally works and should output a Runner.app
-File.这通常可以正常工作,并且应该输出
Runner.app
。 My aim now is, to transform this File into a usable .ipa, which i can distriute to my personal iPhone/iPad via www.diawi.com.我现在的目标是,将该文件转换为可用的.ipa,我可以通过www.diawi.com将其分发到我的个人iPhone / iPad。
I know that it is generally possible, to make Travis CI to commit results back to github, and i also know, that it should be possible, to build/create an .ipa from the .app file using the CLI of XCode.我知道通常可以使Travis CI将结果提交回github,而且我也知道,应该可以使用XCode的CLI从.app文件构建/创建.ipa。
Can someone help/hint me with building a full build.sh
, which performs the flutter build, the xcode build, the ipa-extraction and the push of the .ipa to git?有人可以帮助/提示我构建一个完整的
build.sh
,该文件执行flutter构建,xcode构建,ipa提取以及将.ipa推送到git吗?
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.