twinssbc / Ionic2-Calendar

A calendar component based on Ionic framework
https://ionic-calendar-demo.stackblitz.io
MIT License
388 stars 198 forks source link

Issue while building in android #24

Closed severus1990 closed 7 years ago

severus1990 commented 7 years ago

I am getting the below error in console while trying to build the app into android using the command ionic run android

[21:00:12] Error: Error at D:/My Works/ITS app Main/ITS/.tmp/pages/calendar/cal endar.ngfactory.ts:160:36 [21:00:12] Module ''*'' has no exported member 'Wrapper_CalendarComponent'. [21:00:12] ngc failed [21:00:12] ionic-app-script task: "build" [21:00:12] Error: Error

I am using Angular 2.1.1

twinssbc commented 7 years ago

@severus1990 You need to add below lines in main.prod.ts

import { CalendarComponent } from 'ionic2-calendar/calendar';
import { MonthViewComponent } from 'ionic2-calendar/monthview';
import { WeekViewComponent } from 'ionic2-calendar/weekview';
import { DayViewComponent } from 'ionic2-calendar/dayview';
severus1990 commented 7 years ago

Thanks!! @twinssbc