// First enable developer mode and ADB debugging from the Developer options.
adb connect xxx.xxx.xxx.xxx:5555
adb shell pm enable com.sony.dtv.smarthomesettings
// First enable developer mode and ADB debugging from the Developer options.
adb connect xxx.xxx.xxx.xxx:5555
adb shell pm enable com.sony.dtv.smarthomesettings
git config --local user.name ""
git config --local user.email ""
cat xa{a..g} > somfile.extension
| import { BrowserModule } from '@angular/platform-browser'; | |
| import { NgModule } from '@angular/core'; | |
| import { HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'; | |
| import { ApplicationHttpClient, applicationHttpClientCreator } from './http-client'; | |
| import { AppComponent } from './app.component'; | |
| import { HttpClient } from '@angular/common/http'; | |
| @NgModule({ |
| import {HttpClient, HttpErrorResponse, HttpHeaders, HttpParams} from '@angular/common/http'; | |
| import {Injectable} from '@angular/core'; | |
| import {Observable} from 'rxjs/Observable'; | |
| export interface IRequestOptions { | |
| headers?: HttpHeaders; | |
| observe?: 'body'; | |
| params?: HttpParams; | |
| reportProgress?: boolean; | |
| responseType?: 'json'; |
| import { Injectable } from '@angular/core'; | |
| import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http'; | |
| import { Observable } from 'rxjs/Observable'; | |
| @Injectable() | |
| export class ServerLocationInterceptor implements HttpInterceptor { | |
| public intercept(req: HttpRequest<any>, | |
| next: HttpHandler): Observable<HttpEvent<any>> { |