gitextract_9481lv8a/ ├── .ctags-exclude ├── .gitignore ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app/ │ ├── App_Resources/ │ │ ├── Android/ │ │ │ ├── app.gradle │ │ │ └── src/ │ │ │ └── main/ │ │ │ ├── AndroidManifest.xml │ │ │ └── res/ │ │ │ ├── drawable-nodpi/ │ │ │ │ └── splash_screen.xml │ │ │ ├── values/ │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── values-v21/ │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── iOS/ │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── LaunchScreen.AspectFill.imageset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchScreen.Center.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig │ ├── app.component.ts │ ├── app.css │ ├── app.module.ngfactory.d.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── auth-guard.service.ts │ ├── groceries/ │ │ ├── groceries-common.css │ │ ├── groceries.component.android.css │ │ ├── groceries.component.html │ │ ├── groceries.component.ios.css │ │ ├── groceries.component.ts │ │ ├── groceries.module.ts │ │ ├── groceries.routing.ts │ │ ├── grocery-list/ │ │ │ ├── grocery-list.component.css │ │ │ ├── grocery-list.component.html │ │ │ ├── grocery-list.component.ts │ │ │ └── item-status.pipe.ts │ │ └── shared/ │ │ ├── grocery.model.ts │ │ ├── grocery.service.ts │ │ └── index.ts │ ├── login/ │ │ ├── login-common.css │ │ ├── login.component.android.css │ │ ├── login.component.html │ │ ├── login.component.ios.css │ │ ├── login.component.ts │ │ ├── login.module.ts │ │ └── login.routing.ts │ ├── main.aot.ts │ ├── main.ts │ ├── package.json │ ├── platform.android.css │ ├── platform.ios.css │ ├── shared/ │ │ ├── backend.service.ts │ │ ├── dialog-util.ts │ │ ├── index.ts │ │ ├── login.service.ts │ │ ├── status-bar-util.ts │ │ └── user.model.ts │ └── tests/ │ └── shared/ │ └── user/ │ └── user.spec.ts ├── e2e/ │ ├── config/ │ │ ├── appium.capabilities.json │ │ └── mocha.opts │ ├── groceries.e2e.ts │ ├── setup.ts │ └── tsconfig.json ├── karma.conf.js ├── package.json ├── references.d.ts ├── tsconfig.esm.json ├── tsconfig.json ├── tsconfig.tns.json ├── tslint.json └── webpack.config.js