我正在使用Worklight 6.2 Consumer Edition并已完成以下配置 formmy App:
application-descriptor.xml 配置
<iphone applicationId="MyApp" bundleId="ex.am.ple" version="1.0" securityTest="customTests">
<worklightSettings include="false"/>
<security>
<encryptWebResources enabled="false"/>
<testWebResourcesChecksum enabled="false" ignoreFileExtensions="png, jpg, jpeg, gif, mp4, mp3"/>
</security>
</iphone>
authenticationConfig.xml 配置 **
<customSecurityTest name="customTests">
<test realm="wl_antiXSRFRealm" step="1"/>
<test realm="wl_authenticityRealm" step="1"/>
<test realm="wl_remoteDisableRealm" step="1"/>
<test realm="wl_anonymousUserRealm" isInternalUserID="true" step="1"/>
<test realm="wl_deviceAutoProvisioningRealm" isInternalDeviceID="true" step="2"/>
</customSecurityTest>
**
我为我的应用发布更新 --> 打开我的应用 --> 调用适配器程序 --> 应用请求更新 --> 应用更新 --> 关闭应用 --> 打开我的应用 --> 调用适配器程序--> 应用程序要求更新。
每次当我关闭我的应用程序并调用适配器程序时,都会发生上述情况。是设备没有保留更新的资源还是我的配置有问题?