cordova android camera permissions

Why would camera image uploading work on android Moto X and not Moto G?

My Android Manifest.xml

<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="7" android:versionName="0.0.7" package="com.ionicframework" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="CordovaApp" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize">
        <intent-filter android:label="@string/launcher_name">
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>

controllers.js

$scope.takePicture = function(sport, capture_mode) {

// In order to use fake camera you need to comment out this below if statement
if (capture_mode == 'PHOTOLIBRARY') {
  var capture_mode_var = Camera.PictureSourceType.PHOTOLIBRARY
} else {
  var capture_mode_var = Camera.PictureSourceType.CAMERA
}

function realCamera(sport){

  var options = {
      quality : 50,
      destinationType : Camera.DestinationType.DATA_URL,
      sourceType : capture_mode_var,
      allowEdit : true,
      encodingType: Camera.EncodingType.JPEG,
      targetWidth: 320,
      targetHeight: 568,
      popoverOptions: CameraPopoverOptions,

      saveToPhotoAlbum: false
  };

The camera activates on Moto G but when you accept the photo, the app crashes to the app root url. Photos upload fine from SD card but not from the camera. Is it a permissions issue? Camera works as expected on Moto X.

Thank you in advance with any insights.