android - JSONStore initialization fails -


i'm trying jsonstore working in mobilefirst 7 application on lenovo a7000-a. jsonstore throws error on initialization. on lg p880 works fine. here 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 error get: enter image description here based on error guess error fires because lenovo has 64-bit arm processor (mt6752m). there way fix problem?

update mobilefirst platform foundation 7.0 installation latest available ifix ibm fix central, contain following fix:

pi43196 jsonstore not correctly identify x86_64 architecture processors on mobile devices


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -