diff --git a/desktop-app/src/app/app.component.ts b/desktop-app/src/app/app.component.ts index f9cd29f..b487d00 100644 --- a/desktop-app/src/app/app.component.ts +++ b/desktop-app/src/app/app.component.ts @@ -7,6 +7,10 @@ import { DragAndDropService } from './drag-and-drop.service'; import { AdbClientService } from './adb-client.service'; import { environment } from '../environments/environment'; +// DO NOT REMOVE the ElectronService import +import { ElectronService } from './electron.service'; +// --------------------------------------------------- + @Component({ selector: 'app-root', templateUrl: './app.component.html', @@ -28,6 +32,9 @@ export class AppComponent implements OnInit, AfterViewInit { public appService: AppService, public webService: WebviewService, public dragService: DragAndDropService, + // Do not remove + private electronService: ElectronService + // ------------- ) { this.devMode = isDevMode(); } diff --git a/package.json b/package.json index 63fe547..c5e1a4c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "SideQuest", "productName": "SideQuest", - "version": "0.10.41", + "version": "0.10.42", "description": "A open app store for mobile android based VR devices such as the Levovo Mirage, Oculus Go, Oculus Quest, Vive Focus.", "repository": "https://github.com/SideQuestVR/SideQuest.git", "license": "UNLICENCED",