diff --git a/framework/src/org/apache/cordova/CordovaBridge.java b/framework/src/org/apache/cordova/CordovaBridge.java index 7416cd1932..a8e8369232 100644 --- a/framework/src/org/apache/cordova/CordovaBridge.java +++ b/framework/src/org/apache/cordova/CordovaBridge.java @@ -114,7 +114,6 @@ public boolean isSecretEstablished() { /** Called by cordova.js to initialize the bridge. */ //On old Androids SecureRandom isn't really secure, this is the least of your problems if //you're running Android 4.3 and below in 2017 - @SuppressLint("TrulyRandom") int generateBridgeSecret() { SecureRandom randGen = new SecureRandom(); expectedBridgeSecret = randGen.nextInt(Integer.MAX_VALUE);