I have written an android app using Ionic. The app uses $cordovaDatePicker from the ngCordova website, and this works fine when I do ionic run android and install the app onto my phone.
The problem is if I run ionic build android, then install the apk from a website to test it in the real world, the datepicker doesn’t show at all. The function it’s in is being called fine, and if I console.log $cordovaDatePicker then I can see an object is output as I’d expect.
The function I am calling looks like this:
var options = {
date: new Date(),
mode: 'date'
};
$cordovaDatePicker.show(options).then(function(date) {
$timeout(function() {
scope.selectedDateTime = date;
}, 50);
}, function(err) {
alert(err);
});
I’ve tried adding every permission from this page and that still didn’t help. Because the datepicker window is never shown, neither the success or error callbacks are reached. Does anyone have any ideas?
Thanks for any help.
P.S. I have also posted this question on stackoverflow http://stackoverflow.com/questions/32737896/cordovadatepicker-not-working-after-android-build