From 23a12fd55d682e41796e43f516424415458021aa Mon Sep 17 00:00:00 2001 From: Christophe Boucaut Date: Mon, 10 Nov 2014 11:53:51 +0100 Subject: [PATCH] =?UTF-8?q?Plus=20de=20"class=20not=20found".=20On=20essay?= =?UTF-8?q?e=20de=20d=C3=A9marrer=20l'activit=C3=A9=20pour=20d=C3=A9marrer?= =?UTF-8?q?=20la=20cam=C3=A9ra.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/android/src/org/geneanet/customcamera/CameraLauncher.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/android/src/org/geneanet/customcamera/CameraLauncher.java b/src/android/src/org/geneanet/customcamera/CameraLauncher.java index d172031..1ebf151 100644 --- a/src/android/src/org/geneanet/customcamera/CameraLauncher.java +++ b/src/android/src/org/geneanet/customcamera/CameraLauncher.java @@ -9,8 +9,8 @@ import android.content.Intent; public class CameraLauncher extends CordovaPlugin { public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException { - /*Intent intent = new Intent("org.geneanet.customcamera.CameraView"); - cordova.startActivityForResult((CordovaPlugin) this, intent, 1111111);*/ + Intent intent = new Intent("org.geneanet.customcamera.CameraView"); + cordova.startActivityForResult((CordovaPlugin) this, intent, 1111111); return true; }