Native Plugins not working in Ionic View App

I really love the idea of the Ionic View App to showcase or preview an app. Unfortunately, none of the native plugins work in my app, even though they are listed as supported.

I’m using the following plugins which I expected to work:

cordova-plugin-statusbar 2.2.0 "StatusBar"
cordova-plugin-camera 2.3.0 "Camera"
cordova-plugin-device-orientation 1.0.4 "Device Orientation"

The status bar should be hidden using:

platform.ready().then(() => {
    StatusBar.hide();
});

However, the contents (icons, battery, etc.) are hidden, but there is still a white bar shown on top of the screen (I tried to add StatusBar.overlaysWebView(false);StatusBar.styleLightContent(); as well, with no success)

The camera seems to take a picture, but it won’t display in my app.

<img class="avatar" [src]="user.avatar" *ngIf="user.avatar">

Camera.getPicture(options).then((imageData) => {
  this.user.avatar = 'data:image/jpeg;base64,' + imageData;

}, (err) => {
  console.log('settings.ts 60 =>', err);
});

Locking device orientation using

platform.ready().then(() => {
   ScreenOrientation.lockOrientation('portrait');
});

doesn’t work either.

I had these issues with Beta 10 and still have them with RC.0. Am I the only one experiencing these issues with native plugins in the Ionic View App? Any advice?

Btw. the plugins work fine on the device (ionic run ios).

@smartcode Could you please show more of your code for how you setup the camera? I’m having no luck whatsoever. Thanks in advance!