Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Uh oh! ENOENT, no such file or directory '<meteor-app>/.meteor/local/cordova-build/platforms/android/local.properties'

while trying to run a meteor android app (meteor run android) with the following Cordova location-services plugin I get: Error: Uh oh! ENOENT, no such file or directory '/home/yonatan/snipitest/meteor-test-app/.meteor/local/cordova-build/platforms/android/local.properties'

if I try meteor run there is no error.

like image 357
yonatan Avatar asked Aug 05 '15 17:08

yonatan


1 Answers

Meteor and Cordova are kinda frenemies.

Make sure you run meteor add-platform android and install everything like described here

It works. I'm using it. It's just alot of code from alot of different people coming together.

You can also delete [project_dir]/.meteor/local to clean up anything left over from a broken build.

like image 80
Michael Cole Avatar answered Oct 14 '22 19:10

Michael Cole