diff --git a/camera/camera.android.ts b/camera/camera.android.ts index a7c1a882c..a8025a29e 100644 --- a/camera/camera.android.ts +++ b/camera/camera.android.ts @@ -23,7 +23,6 @@ export var takePicture = function (options?): Promise { var takePictureIntent = new android.content.Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); var dateStamp = createDateTimeStamp(); - var fileSystem: typeof fileSystemModule = require("file-system"); if (saveToGallery) { var picturePath = android.os.Environment.getExternalStoragePublicDirectory( android.os.Environment.DIRECTORY_PICTURES).getAbsolutePath() + "/" + "cameraPicture_" + dateStamp + ".jpg";