gpt4 book ai didi

ios - Gluon iOS 应用程序交付错误

转载 作者:行者123 更新时间:2023-11-29 00:17:12 25 4
gpt4 key购买 nike

您好,我正在使用应用程序加载器将我的应用程序加载到 TestFlight 中,但我不断收到 3 个错误,我不知道如何处理它们。

Error ITMS-90096 Your binary is not optimised for iPhone 5 - new apps must include support for a 4inch display and must include a launch image with a -568h size modifier. (Paraphrased)

Error ITMS-90475 Invalid Bundle. iPad multitasking support requires a launch story board in bundle.

Error ITMS-90208 Invalid Bundle. The bundle does not support the minimum OS version specified in the info.plist.

我尝试在 plist 中添加最低操作系统版本设置,但它告诉我它是 pkg 或 mpkg 而不是 ipa 文件,即使文件扩展名为 .ipa。我不知道如何修复其他的。

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.6'

}
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'

}

}

mainClassName = 'com.nopanicsselfhelper.NoPanicsSelfHelper'

dependencies {
compile 'com.gluonhq:charm:4.3.2'

}

jfxmobile {

downConfig {

version = '3.2.4'
// Do not edit the line below. Use Gluon Mobile Settings in your project context menu instead
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}

android {
signingConfig {
storeFile file("x")
storePassword 'x'
keyAlias 'x'
keyPassword 'x'
}
applicationPackage = 'com.nopanicsselfhelper.NoPanicsSelfHelper.java'
manifest = 'src/android/AndroidManifest.xml'
resDirectory = 'src/android/res'
}
ios {

infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*'
]
iosSignIdentity = "x"
iosProvisioningProfile = "x"
arch = "arm64"
}
}

default-info.plist

最佳答案

通过将 MInimumOSVersion 添加到我的默认值来解决错误 90208-信息.plist。 - 这不是在 Xcode 项目中可以完成的事情,但我认为从我一直以来所做的事情来看,这在 gluon 项目中是必要的。使用推荐的 LSMinimum 选项或 MaximumSystemVersion 将导致另一个错误。

通过将带有字符串 YES 的 UIRequiresFullScreen 添加到 plist 来要求全屏,解决了错误 90475。

错误 90096 已通过添加回 Gluon 提供的以名称 default 开头的各种必需文件来解决。

关于ios - Gluon iOS 应用程序交付错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45061343/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com