Skip to content

Commit

Permalink
Add remove bank works. Some issues with webview.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias committed Apr 20, 2018
1 parent 6a0c0c4 commit 394e4c8
Show file tree
Hide file tree
Showing 11 changed files with 133 additions and 291 deletions.
11 changes: 7 additions & 4 deletions config.xml
Expand Up @@ -3,7 +3,7 @@
<name>Northbricks</name>
<description>http://www.northbricks.com</description>
<author email="info@northbricks.com" href="http://www.northbricks.io/">Northbricks Team</author>
<content src="index.html" />
<content original-src="index.html" src="http://192.168.51.166:8100" />
<access origin="*" />
<allow-navigation href="http://ionic.local/*" />
<allow-intent href="http://*/*" />
Expand Down Expand Up @@ -92,12 +92,15 @@
<plugin name="cordova-plugin-actionsheet" spec="^2.3.3" />
<plugin name="cordova-plugin-statusbar" spec="git+https://github.com/apache/cordova-plugin-statusbar.git" />
<allow-navigation href="http://192.168.8.108:8100" />
<plugin name="cordova-plugin-inappbrowser" spec="^2.0.2" />
<allow-navigation href="http://10.177.49.55:8100" />
<allow-navigation href="http://10.117.3.184:8100" />
<allow-navigation href="http://192.168.108.187:8101" />
<allow-navigation href="http://172.20.10.2:8101" />
<allow-navigation href="http://172.22.94.161:8100" />
<engine name="ios" spec="4.5.4" />
<engine name="android" spec="7.1.0" />
<allow-navigation href="http://192.168.1.43:8101" />
<allow-navigation href="http://192.168.1.43:8100" />
<plugin name="cordova-plugin-inappbrowser" spec="^2.0.2" />
<allow-navigation href="http://192.168.51.83:8100" />
<allow-navigation href="http://192.168.51.166:8100" />
<engine name="ios" spec="^4.5.4" />
</widget>
240 changes: 17 additions & 223 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 3 additions & 5 deletions package.json
Expand Up @@ -29,8 +29,7 @@
"@ionic-native/status-bar": "^5.0.0-beta.4",
"@ionic/storage": "2.1.3",
"auth0-js": "^9.4.2",
"cordova-android": "7.1.0",
"cordova-ios": "4.5.4",
"cordova-ios": "^4.5.4",
"cordova-plugin-actionsheet": "^2.3.3",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-console": "^1.1.0",
Expand Down Expand Up @@ -80,8 +79,7 @@
"cordova-plugin-statusbar": {}
},
"platforms": [
"ios",
"android"
"ios"
]
}
}
}
8 changes: 6 additions & 2 deletions src/app/app.module.ts
@@ -1,12 +1,14 @@
import { BankAuthPageModule } from '../pages/bank/bank-auth/bank-auth.module';
import { ErrorHandler, NgModule } from '@angular/core';
import { HttpModule } from '@angular/http';
import { BrowserModule } from '@angular/platform-browser';

import { Keyboard } from '@ionic-native/keyboard/ngx';
import { SplashScreen } from '@ionic-native/splash-screen/ngx';
import { StatusBar } from '@ionic-native/status-bar/ngx';
import { IonicStorageModule } from '@ionic/storage';
import { IonicApp, IonicErrorHandler, IonicModule } from 'ionic-angular';
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';

// import { InputDebounceDirective } from '../directives/input-debounce/input-debounce';
import { AboutPage } from '../pages/about/about';
import { BankPageModule } from '../pages/bank/bank.module';
Expand All @@ -27,6 +29,7 @@ import { EditProfilePageModule } from '../pages/edit-profile/edit-profile.module
import { SplashScreenPageModule } from '../pages/splash-screen/splash-screen.module';
import { TermsAndConditionsPageModule } from '../pages/terms-and-conditions/terms-and-conditions.module';
import { TransactionPage } from '../pages/transaction/transaction';
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
import { HttpClientModule } from '@angular/common/http';

@NgModule({
Expand All @@ -42,9 +45,10 @@ import { HttpClientModule } from '@angular/common/http';
imports: [
BrowserModule,
TermsAndConditionsPageModule,
HttpClientModule,
HttpModule,
ProfilePageModule,
BankPageModule,
HttpClientModule,
SplashScreenPageModule,
LinkBanksPageModule,
EditProfilePageModule,
Expand Down

0 comments on commit 394e4c8

Please sign in to comment.