Is there a way to enable coffeescript source maps for a bundled meteor application? I am trying to debug some behavior that is appearing in the bundled app that is not in the development app.
Any help would be greatly appreciated.
Related
i am building my first phonegap app and when i open the app i instantly redirecting (window.location) the user to my server where my web app is hosted. Is it possible to load the phonegap plugins from there? Because the "deviceready" event is not firing and i cannot call any plugin functions.
I can confirm that loading remotely does appear to allow access to native components (when scripts are properly loaded) and that cordova.jsdoes not appear to need to be loaded by the local index.html bootstrap.
Short answer: Yes
Some 'gotcha's'
You will have to supply correct cordova.js version for the platform browsing to your site.
you can look here for more info https://github.com/apache/cordova-js. This project hosts the core js elements, and builds the platform specific cordova.js lib
Any plugin api's your app wants to interact with must be pre-installed into the Native App
any plugin with native code will have to be added to the project and deployed to device bundled inside the app. There is no way to lazyload native code. The js portions of the plugin could be hosted on your server, however.
More information, some apps that do this
The PhoneGap Developer App uses a similar technique to what is describe above and what you want. The only difference is that it is meant as a dev tool, and the server is a local dev machine.
The Cordova App Harness also uses this technique of pre-bundling an app package with plugins, to be consumed by remotely hosted resources
You cannot, deviceready only functioning if the app run on mobile phone environment only. If web based or dekstop application, it won't trigger.
No , dont do that . loading remote website will not able to intract with your plugins . and the app will get rejected on istore too
I am building application on Eclipse before trying the Phonegap Build.
But as I build Application Using local PG 2.X Library
and the Same application I build using PGBuild 2.X.... I see Touch and scroll performance is great in Phonegap Build apk file. Why is that? Do PG people keeping some cookies for themselves at PG Build only..??
we built a native application on phonegap native. at it ran like a charm.
No performance issues with touch and feel
I am new to sencha touch. I want to create a mobile application in eclipse ide.
Can anyone tell me how to do that? I got many links for creating web app but none for mobile app.
The first thing I recommend is that you get started with sencha command, this will help you when building out the app for native packaging, not to mention creating an initial app for you with the basic essentials: http://docs.sencha.com/touch/2-0/#!/guide/command
Android Packaging: http://docs.sencha.com/touch/2-0/#!/guide/native_android
iOS Packaging: http://docs.sencha.com/touch/2-0/#!/guide/native_packaging
This next one talks about phonegap and working with eclipse... which since sencha command is available, 3rd party sdk's like phonegap would be the only rrason to compile in eclipse, otherwise sencha command can handle it.... http://andidog.de/blog/2012/06/packaging-a-sencha-touch-2-application-with-phonegap-for-android/
I am developing a GTK# application for ubuntu desktop. The main functionality includes getting Facebook live-feed and Notification etc after authentication.
I have registered the app on developers.facebook got the app-id and all, but I can't find any resources for desktop app development and that's where I am stuck.
I am just starting up with Ubuntu development so please don't mind the vague idea of the problem. Ubuntu developers here please help!
I would recommend using a GUI designer like Glade:
Glade can be used with the Glade# bindings to easily design GUI
applications. A GUI designer called Stetic is integrated with the
MonoDevelop IDE.
I'm starting developing applications for iPhone. My idea is to develop a application like a suite or multiple modules. The main application function is a application manager. This application can download each of the availables applications for the suite, like a office suite that starts with no applications/extensions, so, there are the possibility to download a spread-sheet editor, a text editor, or a image editor and so on.
I don't know if each application need to be a standalone application in appstore and the manager to have only shortcuts for they. Or if each application can be a library or plugin that will be installed in the main application through download.
Suggestions?
Thanks!
App store review guidelines says:
2.7 Apps that download code in any way or form will be rejected
You can't download libraries or code in your application. What you can do is, ship the application with all functionalities and enable them by in-app purchases.