Android: Failure [INSTALL_PARSE_FAILED_CERTIFICATE_ENCODING]

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.

  1. Open Automator

  2. Choose Service workflow

  3. 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.

  4. From Utilities, add “Run Shell Script”

  5. Enter something like: rsync -avzh --exclude ‘.*’ /Users/johndoe/Projects/YourMobileapp/* /Users/johndoe/Dropbox/Apps/CoronaViewer  (replace ‘johndoe’ with your username)

  6. Add “Get Value of Variable”

  7. Name your variable in the drop down. It defaults to “Storage” but I named it “Output” instead.

  8. 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.

  9. 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.