ios – Cordova fastlane xcode 8配置文件

ios – Cordova fastlane xcode 8配置文件,第1张

概述我尝试在 xcode 8上通过fastlane( https://github.com/platanus/fastlane-cordova)构建我的应用程序 如何在执行xcode.proj时在cordova中指定选择“正确”的配置文件? === BUILD TARGET app OF PROJECT app WITH CONFIGURATION Release ===[ios] [ios] C 我尝试在 xcode 8上通过fastlane( https://github.com/platanus/fastlane-cordova)构建我的应用程序
如何在执行xcode.proj时在cordova中指定选择“正确”的配置文件?

=== BUILD TARGET app OF PROJECT app WITH CONfigURATION Release ===[ios] [ios] Check dependencIEs[ios] Signing for "Eule" requires a development team. Select a development team in the project editor.[ios] Code signing is required for product type 'Application' in SDK 'iOS 10.0'[ios] [ios] ** BUILD Failed **[ios] [ios] [ios] The following build commands Failed:[ios]   Check dependencIEs[ios] (1 failure)[ios] Error: Error code 65 for command
解决方法 我有同样的问题,所以我最终创建了一个 Cordova plugin for Fastlane来解决这个问题.

了解如何在this blog post或以下使用它:

使用Cordova Fastlane插件

将Cordova Fastlane Plugin添加到您的项目:

fastlane add_plugin cordova

当被问到应该fastlane修改路径’Gemfile’的Gemfile吗? (y / n),回复y.

然后,您可以将插件集成到Fastlane设置中,例如:

platform :ios do  desc "Deploy ios app on the appstore"  lane :create do    produce(app_name: "myapp")  end  lane :deploy do    match(      type: "appstore",git_url: "https://bitbucket.org/Almouro/certificates" # REPLACE WITH YOUR PRIVATE REPO FOR MATCH    )    cordova(platform: 'ios') # Using the Cordova Fastlane Plugin    appstore(ipa: ENV['CORDOVA_IOS_RELEASE_BUILD_PATH'])  endendplatform :androID do  desc "Deploy androID app on play store"  lane :deploy do    cordova(      platform: 'androID',keystore_path: './prod.keystore',# REPLACE THESE lines WITH YOUR KEYSTORE informatION      keystore_alias: 'prod',keystore_password: 'password'    ) # Cordova Fastlane Plugin    supply(apk: ENV['CORDOVA_ANDROID_RELEASE_BUILD_PATH'])  endend

用Appfile等

app_IDentifIEr "com.awesome.app"apple_ID "apple@ID.com"team_ID "28323HT"

一块蛋糕吧!

对于iOS,运行fastlane ios创建一次以在开发者成员中心和iTunes Connect上创建您的应用程序.

现在,您只需运行fastlane ios deploy和fastlane androID deploy即可部署到商店!

从这往哪儿走

>您可以通过在Cordova应用程序的根目录下运行fastlane actions cordova来查看所有插件选项
> Fastlane docs非常适合了解它如何减轻您的生活
>如果您对插件有任何改进或想法,请让他们知道here

总结

以上是内存溢出为你收集整理的ios – Cordova fastlane xcode 8配置文件全部内容,希望文章能够帮你解决ios – Cordova fastlane xcode 8配置文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/1005891.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存