Skip to content

Instantly share code, notes, and snippets.

@vaibhavgehani
Created December 16, 2020 12:46
Show Gist options
  • Save vaibhavgehani/9ae580f41fb8c6593773f9437e8cb86b to your computer and use it in GitHub Desktop.
Save vaibhavgehani/9ae580f41fb8c6593773f9437e8cb86b to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { RouteReuseStrategy } from '@angular/router';
import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import { AppComponent } from './app.component';
import { AppRoutingModule } from './app-routing.module';
import { Kommunicate } from '@ionic-native/kommunicate/ngx';
@NgModule({
declarations: [AppComponent],
entryComponents: [],
imports: [
BrowserModule,
IonicModule.forRoot(),
AppRoutingModule,
],
providers: [
StatusBar,
Kommunicate,
SplashScreen,
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy }
],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment