Can I Build a meteor android app in cloud 9.
meteor add-platform android
Because Im running on windows or should I install linux and run
curl https://install.meteor.com/ | sh
and build it locally.
If you want to build android app on Windows you need to be using the meteor 1.3 release beta which you can install by running meteor update --release 1.3-cordova-beta.5 in your project folder - Details on this release
Prior to 1.3 you will need to build the app on a linux machine
You can build a Meteor app on Cloud9 using any version of Meteor. See Meteor on Cloud9.
Related
I have a flutter project which is dependent on some firebase services like auth, db etc. It was working fine on mac mini (intel). But on my MacBook pro I can't build project for podfile error. It showing firebase issue. Any solution?
There is no direct solution for the same. But there is a work around for resolving the Podfile related errors. Follow the steps below,
Execute the below command to install ffi from the terminal,
sudo arch -x86_64 gem install ffi
Then in the iOS folder of Flutter project execute the below command to install the pods. You have to run this command every time a new Flutter project is created and if it needs firebase.
arch -x86_64 pod install
Finally run the application in the Android studio
I had to update my Meteor application as accounts-facebook was not wokring on previous version which was Meteor 1.3. After running "meteor update" command the meteor version is now updated to 1.5. Previously I was using mupx to deploy my application on Digital Ocean but it is not working for Meteor 1.5.
i have tried to integrate One-signal as per given documents on their site but when i install framwork through podfile , at this time i got 0 percent dependancy
so how to integrate proper way??? in ios Xcode 8.
i have tried this Steps:
Option A: Use CocoaPods (Recommended)
Setting up CocoaPods on your system if you don't have it already.
Make sure you have the latest 1.1.0 version by running pod --version from the terminal.
Run the following to upgrade sudo gem install cocoapods
1.1 Make sure your current Xcode project is closed.
1.2 Run pod init
1.3 Run echo "pod 'OneSignal'" >> Podfile
NOTE (React Native only) : Run echo "pod 'OneSignal', '~> 1.13.3'" >> Podfile instead.
1.3 Run pod install
1.4 Open the newly created .xcworkspace file.
https://documentation.onesignal.com/docs/ios-sdk-setup
I have noticed that the cocoaPods fails with iOS. I recommend doing the manual way.
Download the sdk from here:
https://github.com/OneSignal/OneSignal-iOS-SDK
Import the oneSignal.h and .m into your project.
Remember to go to capabilities and activate Remote notifications
Add this lines of code in your AppDelegate or wherever you would like to activate push notifications (Replace with your credentials):
self.oneSignal = [[OneSignal alloc] initWithLaunchOptions:launchOptions
appId:#"YOUR APP ID IN HERE"
handleNotification:nil];
Finally follow my question and you are ready to go. Good Luck!
https://stackoverflow.com/a/39135807/2551707
I've downloaded telescope from github and I'm trying to install it on my website.
unfortunately I don't know how? I tried it on my mac with no problems
git clone git#github.com:TelescopeJS/Telescope.git
And
curl https://install.meteor.com/ | sh
To deploy use meteor deploy to deploy to the meteor servers.
Look at mup by arunoda for deploying to your own server.
There's also demetorizer.
I would like to deploy Meteor version 0.7 and 0.8 up to CloudBees? what is the best way to do this and is this possible?
Yes this is possible.
This can be achieved using the "-t nodejs" command line option when deploying - as meteor can be deployed as a nodejs app.
The best way is to use "demeteorizer" to convert it to a plain nodejs app:
https://github.com/onmodulus/demeteorizer
Once you have the plain app - you can npm install and zip -r - the app directory - and deploy it normally on cloudbees as a nodejs app from there.