From 468e66f90146dbc9a15775291092abab7ef79068 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8C=83=E5=A4=A7=E5=BE=B7?= Date: Tue, 24 Oct 2023 21:06:07 +0800 Subject: [PATCH] #1 --- src/android/com/cescit/integrity/CescitIntegrity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/android/com/cescit/integrity/CescitIntegrity.java b/src/android/com/cescit/integrity/CescitIntegrity.java index 4413d45..461da62 100644 --- a/src/android/com/cescit/integrity/CescitIntegrity.java +++ b/src/android/com/cescit/integrity/CescitIntegrity.java @@ -63,7 +63,7 @@ public class CescitIntegrity extends CordovaPlugin { // DebugDetection.check(activity.getPackageName()); JSONObject response = new JSONObject(); response.put("assets", AssetsIntegrity.check(context)); - response.put("res", ResIntegrity.check(context)); + // response.put("res", ResIntegrity.check(context)); response.put("apk", ApkIntegrity.check(context)); result = new PluginResult(PluginResult.Status.OK, response); } catch (Exception e) { @@ -83,7 +83,7 @@ public class CescitIntegrity extends CordovaPlugin { try { JSONObject response = new JSONObject(); response.put("assets", AssetsIntegrity.getHashString(context)); - response.put("res", ResIntegrity.getHashString(context)); + // response.put("res", ResIntegrity.getHashString(context)); response.put("apk", ApkIntegrity.getHashString(context)); result = new PluginResult(PluginResult.Status.OK, response); } catch (Exception e) {