diff --git a/src/java/KP2ASoftkeyboard_AS/.idea/workspace.xml b/src/java/KP2ASoftkeyboard_AS/.idea/workspace.xml index ced9f3c9..de97814e 100644 --- a/src/java/KP2ASoftkeyboard_AS/.idea/workspace.xml +++ b/src/java/KP2ASoftkeyboard_AS/.idea/workspace.xml @@ -90,7 +90,7 @@ - + @@ -100,10 +100,27 @@ - - + + + + + + + + + + + + + + + + + + + @@ -1511,6 +1528,8 @@ + + @@ -1526,8 +1545,6 @@ - - @@ -1718,25 +1735,25 @@ - + - + - + - + @@ -1796,6 +1813,23 @@ + + + + + + + + + + + + + + + + + @@ -2134,7 +2168,7 @@ - + @@ -2142,10 +2176,27 @@ - - + + + + + + + + + + + + + + + + + + + diff --git a/src/java/KP2ASoftkeyboard_AS/app/src/main/java/keepass2android/autofill/AutoFillService.java b/src/java/KP2ASoftkeyboard_AS/app/src/main/java/keepass2android/autofill/AutoFillService.java index 49949342..7ee8c699 100644 --- a/src/java/KP2ASoftkeyboard_AS/app/src/main/java/keepass2android/autofill/AutoFillService.java +++ b/src/java/KP2ASoftkeyboard_AS/app/src/main/java/keepass2android/autofill/AutoFillService.java @@ -174,12 +174,6 @@ public class AutoFillService extends AccessibilityService { else { android.util.Log.d (_logTag, "Notif for " + url ); - if (getLastReceivedCredentialsUser() != null) - { - android.util.Log.d (_logTag, getCredentialsField("URL")); - android.util.Log.d (_logTag, url); - } - AskFillPassword(url); cancelNotification = false; } @@ -196,13 +190,13 @@ public class AutoFillService extends AccessibilityService { } catch (Exception e) { - android.util.Log.e(_logTag, e.toString()); + android.util.Log.e(_logTag, (e.toString() == null) ? "(null)" : e.toString() ); Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("message/rfc822"); String to = "crocoapps@gmail.com"; intent.putExtra(Intent.EXTRA_EMAIL, new String[]{to}); - intent.putExtra(Intent.EXTRA_SUBJECT, "Error report"); + intent.putExtra(Intent.EXTRA_SUBJECT, "Error report 7d+"); intent.putExtra(Intent.EXTRA_TEXT, "Please send the following text as an error report to crocoapps@gmail.com. You may also add additional information about the workflow you tried to perform. This will help me improve the app. Thanks! \n"+e.toString() ); @@ -247,7 +241,7 @@ public class AutoFillService extends AccessibilityService { } catch (Exception e) { - android.util.Log.d(_logTag, e.toString()); + android.util.Log.d(_logTag, (e.toString() == null) ? "(null)" : e.toString()); targetName = packageName; } }