很多时候因为种种原因,我们需要发布ipa,但是苦于没有企业证书,或者说由于某些原因,我们要将ios产物交给第三方进行企业签名,那么我们并没有开发者证书怎么办?网上关于iOS无证书打包ipa的文章也很多,我只说我验证过的一种可靠方式。 首先,我们先生成一个Runner.app:
flutter build ios --release
复制代码
输出结果:
Building "com.jarvanmo.fluwx-example" for device (ios-release)...
Automatically signing iOS for device deployment using specified development team in Xcode project: xxxxxxx
Running pod install... 1.3s
Starting Xcode build...
├─Building Dart code... 26.7s
├─Generating dSYM file... 0.9s
├─Stripping debug symbols... 0.7s
├─Assembling Flutter resources... 1.2s
└─Compiling, linking and signing... 15.3s
Xcode build done. 54.3s
Built /Users/xxx/Code/Flutter/fluwx/example/build/ios/iphoneos/Runner.app.
复制代码
我们去寻找*/Users/xxx/Code/Flutter/fluwx/example/build/ios/iphoneos/Runner.app. 这个文件,然后我们要创建一个名为Payload的文件夹,注意名字不能错,然后把Runner.app粘贴到Payload文件下,然后对Playload压缩成.zip*:
然后将Runner.zip重命名为Playload.ipa:
作者:JarvanMo
链接:https://juejin.im/post/5eca1514e51d45789c7e77ea
来源:掘金
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。