Reputation: 81
I'm trying to get JSONStore working in MobileFirst 7 application on Lenovo A7000-a. But JSONStore throws error on initialization. However on my LG P880 it works fine. Here is the code of init:
var collections = {
configuration : {
searchFields : { id : 'string' }
},
taskList : {
searchFields : { id : 'string' }
},
statistics : {
searchFields : { subCategoryId : 'string' }
},
issues : {
searchFields : {
id : 'string',
internalId : 'string',
taskListId : 'string',
subCategoryId : 'string',
subTaskId : 'string'
}
},
subCategories : {
searchFields : {}
},
categories : {
searchFields : {}
},
resultQueue : {
searchFields : {
taskListId: 'string'
}
}
};
WL.JSONStore.init(collections)
.then( function (result) {
angular.element(document).ready(function() {
angular.bootstrap(document, ['App']);
});
},
function (error) {
console.log('ERROR: cannot initialize JSONStore');
});
And here is the error I get:
Based on error I guess that this error fires because lenovo has 64-bit ARM processor (MT6752M). Is there a way to fix this problem?
Upvotes: 0
Views: 222
Reputation: 44516
Update your MobileFirst Platform Foundation 7.0 installation to the latest available iFix from IBM Fix Central, which will contain the following fix:
PI43196 JSONSTORE DOES NOT CORRECTLY IDENTIFY X86_64 ARCHITECTURE PROCESSORS ON MOBILE DEVICES
Upvotes: 1