Side note: Why do my screenshots show up so tiny in the forum post? I’m attaching the screenshot, then “adding to post”; I don’t see how to make it “actual size”.
For those interested in this, I have two separate folders now. The folder containing my mobile app, and then the CoronaViewer folder. I created an Automator Service to “Sync to CoronaViewer” that is working wonderfully.
You can build your own pretty easily. It looks like a lot of steps, but they’re all really easy. It’ll take 5 minutes or less.
-
Open Automator
-
Choose Service workflow
-
At the top of the screen, select Service receives [no input] in [any application]. Note that [any application] could be Finder, Sublime Text, Lua Glider, or whatever you want. This is currently the only custom service I’ve got, so I’m just making it available everywhere.
-
From Utilities, add “Run Shell Script”
-
Enter something like: rsync -avzh --exclude ‘.*’ /Users/johndoe/Projects/YourMobileapp/* /Users/johndoe/Dropbox/Apps/CoronaViewer (replace ‘johndoe’ with your username)
-
Add “Get Value of Variable”
-
Name your variable in the drop down. It defaults to “Storage” but I named it “Output” instead.
-
Add “Display Notification” with the title: “Synced to CoronaViewer” and in the Message part, drag the “Output” Variable from the “Variable” pane at the bottom of the workflow.
-
Save as “Sync to CoronaViewer”
Now, anytime you want to sync your project, go to the Services sub menu in any app’s menu.
Very useful.