First commit
This commit is contained in:
76
src/app/app.module.ts
Normal file
76
src/app/app.module.ts
Normal file
@@ -0,0 +1,76 @@
|
||||
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 { HttpClientModule, HttpClient } from '@angular/common/http';
|
||||
import { TranslateModule, TranslateLoader } from '@ngx-translate/core';
|
||||
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
||||
import { Camera } from '@ionic-native/Camera/ngx';
|
||||
import { File } from '@ionic-native/File/ngx';
|
||||
import { WebView } from '@ionic-native/ionic-webview/ngx';
|
||||
import { FilePath } from '@ionic-native/file-path/ngx';
|
||||
import { NativeStorage } from '@ionic-native/native-storage/ngx';
|
||||
import { Facebook, FacebookLoginResponse } from '@ionic-native/facebook/ngx';
|
||||
import { GooglePlus } from '@ionic-native/google-plus/ngx';
|
||||
import { OneSignal } from '@ionic-native/onesignal/ngx';
|
||||
import { Geolocation } from '@ionic-native/geolocation/ngx';
|
||||
import { LocationAccuracy } from '@ionic-native/location-accuracy/ngx';
|
||||
import { GoogleMaps, Geocoder } from '@ionic-native/google-maps';
|
||||
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
|
||||
|
||||
import { BrMaskerModule } from 'br-mask';
|
||||
import { IonicRatingModule } from 'ionic4-rating';
|
||||
import { TagInputModule } from 'ngx-chips';
|
||||
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
||||
|
||||
export function createTranslateLoader(http: HttpClient) {
|
||||
return new TranslateHttpLoader(http, 'assets/i18n/', '.json');
|
||||
}
|
||||
|
||||
@NgModule({
|
||||
declarations: [AppComponent],
|
||||
entryComponents: [],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
IonicModule.forRoot(),
|
||||
AppRoutingModule,
|
||||
HttpClientModule,
|
||||
TranslateModule.forRoot({
|
||||
loader: {
|
||||
provide: TranslateLoader,
|
||||
useFactory: (createTranslateLoader),
|
||||
deps: [HttpClient]
|
||||
}
|
||||
}),
|
||||
BrMaskerModule,
|
||||
IonicRatingModule,
|
||||
TagInputModule,
|
||||
BrowserAnimationsModule
|
||||
],
|
||||
providers: [
|
||||
StatusBar,
|
||||
SplashScreen,
|
||||
Facebook,
|
||||
OneSignal,
|
||||
GooglePlus,
|
||||
Geolocation,
|
||||
LocationAccuracy,
|
||||
GoogleMaps,
|
||||
Geocoder,
|
||||
InAppBrowser,
|
||||
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy },
|
||||
Camera,
|
||||
File,
|
||||
WebView,
|
||||
FilePath,
|
||||
NativeStorage
|
||||
],
|
||||
bootstrap: [AppComponent]
|
||||
})
|
||||
export class AppModule {}
|
||||
Reference in New Issue
Block a user