Adb install failure: INSTALL_CANCELED_BY_USER

The same trouble with same device has been here. So, it’s Xiaomi trouble, and here is a solution for this problem: Go to the “Security” application and tap “Options” at top right corner Scroll down to “Feature Settings” group, and look for “Permissions” At there switch off “Install via USB” option, which manages installation of … Read more

Component is part of the declaration of 2 modules

Remove the declaration from AppModule, but update the AppModule configuration to import your AddEventModule. ….. import { AddEventModule } from ‘./add-event.module’; // <– don’t forget to import the AddEventModule class @NgModule({ declarations: [ MyApp, HomePage, Login, Register, //AddEvent, <— remove this EventDetails ], imports: [ BrowserModule, IonicModule.forRoot(MyApp), HttpModule, AngularFireModule.initializeApp(config), AddEventModule, // <— add this import … Read more