I am making an android app in meteor. Its under development. I just tried to build apk for testing purposes. But when I try to install the apk file, the device says "Application not installed." I have tried the following steps.
meteor build ../build --server 192.168.0.5:3000
The above command will generate a file unaligned.apkin the android directory and CordovaApp-release-unsigned.apkin the android / project / ant -build directory. Both apk say "Application is not installed." So I add the following lines
App.info({
name: 'My App',
description: 'An Android app built with Meteor',
version: '0.0.1'
});
in mobile-config.jsthe root directory of the application. But then again I got the same problem "Application not installed."
Is something wrong with my steps? Why is APK not installed? How to build the right apk with meteor?