In fact, there is a trivial gotcha. As for framework_version in project_info.json, it won’t reflect the changes made in Localkit, while cordova_version is reflected as shown below.
tfutada
@tfutada
I have been working on off-shore projects remotely. I love Swift and Go actually.
Posts made by tfutada
-
RE: Does Monaca Localkit 2.0.3 Cordova 6.2.0-beta option work ?
-
RE: Does Monaca Localkit 2.0.3 Cordova 6.2.0-beta option work ?
I ensured that with the latest Localkit, it got changed to iOS 4.2.0, which is the latest version of Cordova platform. Thanks.
-
Does Monaca Localkit 2.0.3 Cordova 6.2.0-beta option work ?
Re: Monaca Localkit build fails with https://github.com/phonegap/phonegap-plugin-push.git
In fact, i need to bump Cordova, cordova-ios to 4.0.1 or higher to work around the issue on phonegap-plugin-push
https://github.com/phonegap/phonegap-plugin-push/issues/456But, when selecting Cordova 6.2.0-beta, i ended up with an error dialog just saying 'Failed by unknown error’
The screen shows that iOS Platform remains 3.9.1You guys seem to bump Localkit frequently these day, so i guess it is not stable yet.
-
RE: Monaca Localkit iOS project and iOS Simulator
I am not 100% sure what your problem is, but this might help.
This works with our project.First off, create a Cordova project, on top of that,
Replace www folder and config.xml with your Monaca ones.Under the Cordova project,
$ rm -rf www $ ln -s $(your_monaca_project)/www www $ cp $(your_monaca_project)/config.xml . $ cordova build
Note that UIWebView needs to be replaced with WKWebView.
$ cordova plugin add https://github.com/apache/cordova-plugin-wkwebview-engine.git\#1.0.0
add other Cordova plugins if you use.
-
RE: ons-lazy-repeat won't realize the changes on the model if the size of the list did not change.
@IliaSky Thanks a lot. In fact, as you mentioned, we go with reload function to replace the data so Lazy-repeat can refresh the view. The thing is, the size of our data would be at most 300, and the entire list can be sorted, that is why we needed to refresh the view once sorted.
-
ons-lazy-repeat won't realize the changes on the model if the size of the list did not change.
I am hitting the issue that LazyRepeat won’t realize the changes on the model if the size of list did not change.
Say, in the code at http://codepen.io/frankdiox/pen/epOyPR,
if i tweak the size of the first array from 50 to 26, it does not seem to work.
Hitting ‘Change Array’ do nothing.
Is it supposed to be so or will be fixed in the future?$scope.myArrayFilters[0] = []; var i; for (i = 0; i < 26; i++) { // make both of arrays the same size. $scope.myArrayFilters[0].push({content: i}); } $scope.myArrayFilters[1] = []; for (i = 0; i < 26; i++) { $scope.myArrayFilters[1].push({content: String.fromCharCode(97 + i)}); }
-
RE: I am getting an error when uploading files to cloud from Monaca Localkit
Thanks. Actually, it turned out that a symlink on mac file system was culprit. it works with hard link instead of soft. So sorry to bother you.
-
I am getting an error when uploading files to cloud from Monaca Localkit
When I click on Remote Build or Build Setting, it fails to upload files and show a dialog showing
{“errno”:-21,“code”:“EISDIR”,“syscall”:“read”}The project used to work but somehow from yesterday i am getting the above error.
Even if I remove all the projects from cloud, i keep getting the error. -
RE: Monaca Localkit build fails with https://github.com/phonegap/phonegap-plugin-push.git
I seem to sort it out. according to this page
https://github.com/phonegap/phonegap-plugin-push/issues/679this has to be provided to the cordova plugin add command
–variable SENDER_ID=valueThanks.
-
Monaca Localkit build fails with https://github.com/phonegap/phonegap-plugin-push.git
I used to use a Cordova Push Notification plugin at
https://github.com/phonegap-build/PushPlugin.git
and it works with Monaca Localkit build.The readme.md page said it’s got obsoleted, instead use the new repo at
https://github.com/phonegap/phonegap-plugin-push.gitbut i’ve got an error when building using Localkit
according to project_info.json, the cordova version that i use is
"cordova_version": “5.2”,
Does that have something to do with the error that im facing?I’d really appreciate it if someone help me out as im really stuck with it for so long…
Thanks.